home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume10 / logo / part01 / logohead.c < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-23  |  310 b   |  23 lines

  1.  
  2. /* Print the first line of selected files.  Used by Logo pots command. */
  3.  
  4. #include <stdio.h>
  5.  
  6. main(argc,argv)
  7. int argc;
  8. char **argv;
  9. {
  10.     FILE *fp;
  11.     char line[100];
  12.  
  13.     while (--argc > 0) {
  14.         if ((fp = fopen(argv[1],"r")) != NULL) {
  15.             fgets(line,100,fp);
  16.             printf("%s",line);
  17.             fclose(fp);
  18.         }
  19.     argv++;
  20.     }
  21. }
  22.  
  23.