home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 1 / FishNMoreVol1.bin / more / code_examples / librar / month_fi.c < prev    next >
Text File  |  1989-02-08  |  512b  |  24 lines

  1. /*--------------------------------------*/
  2. /*                    */
  3. /*             MONTH_FILL(X)        */
  4. /*                    */
  5. /* Fills the argument with the month    */
  6. /* names.                */
  7. /*                    */
  8. /*--------------------------------------*/
  9. void month_fill(a)
  10. char *a[12];
  11. {
  12.     a[0]="January";
  13.     a[1]="February";
  14.     a[2]="March";
  15.     a[3]="April";
  16.     a[4]="May";
  17.     a[5]="June";
  18.     a[6]="July";
  19.     a[7]="August";
  20.     a[8]="September";
  21.     a[9]="October";
  22.     a[10]="November";
  23.     a[11]="December";
  24. }