home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 January
/
usenetsourcesnewsgroupsinfomagicjanuary1994.iso
/
sources
/
unix
/
volume10
/
logo
/
part01
/
logohead.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS
UTF-8
Wrap
C/C++ Source or Header
|
1987-06-23
|
310 b
|
23 lines
/* Print the first line of selected files. Used by Logo pots command. */
#include <stdio.h>
main(argc,argv)
int argc;
char **argv;
{
FILE *fp;
char line[100];
while (--argc > 0) {
if ((fp = fopen(argv[1],"r")) != NULL) {
fgets(line,100,fp);
printf("%s",line);
fclose(fp);
}
argv++;
}
}