home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
games
/
volume11
/
jotto
/
part01
/
ord.c
< prev
next >
Wrap
Text File
|
1990-12-11
|
177b
|
17 lines
/*
* ord
*/
char *
ord(n)
int n;
{
if (n/10 == 1) return "th";
switch(n%10) {
case 1: return "st";
case 2: return "nd";
case 3: return "rd";
default: return "th";
}
}