home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lclint.zip / lclint-2_3h-os2-bin.zip / test / tests2.2 / modarray.c < prev    next >
Text File  |  1997-09-03  |  198b  |  12 lines

  1. int main (void) {
  2.   char buffer[6];
  3.  
  4.   (void) fgets (buffer, (int) sizeof (buffer), stdin);
  5.  
  6.   while (buffer[0] != 'x') {
  7.     (void) fgets (buffer, (int) sizeof (buffer), stdin);
  8.   }
  9.  
  10.   return 3;
  11. }
  12.