home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume11 / jotto / part01 / ord.c < prev    next >
Text File  |  1990-12-11  |  177b  |  17 lines

  1. /*
  2.  *    ord
  3.  */
  4.  
  5. char *
  6. ord(n)
  7. int n;
  8. {
  9.     if (n/10 == 1) return "th";
  10.     switch(n%10) {
  11.     case 1: return "st";
  12.     case 2: return "nd";
  13.     case 3: return "rd";
  14.     default: return "th";
  15.     }
  16. }
  17.