home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_09_05 / 9n05116b < prev    next >
Text File  |  1991-03-23  |  306b  |  16 lines

  1. int main(void)
  2.     {
  3.     char word[MAXWORD];
  4.     unsigned lineno = 1;
  5.  
  6.     while (getword(word, MAXWORD) != EOF)
  7.         if (isalpha(word[0]))
  8.             xrt_add(word, lineno);
  9.         else if (word[0] == '\n')
  10.             ++lineno;
  11.     xrt_print();
  12.     xrt_destroy();
  13.     return 0;
  14.     }
  15.  
  16.