sbase/head.c

63 lines
984 B
C
Raw Normal View History

2011-05-25 10:42:17 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdio.h>
#include <stdlib.h>
2011-05-25 19:40:47 +00:00
#include <string.h>
2011-05-25 10:42:17 +00:00
#include <unistd.h>
#include "util.h"
static void head(FILE *, const char *, long);
2013-06-14 18:20:47 +00:00
static void
usage(void)
{
eprintf("usage: %s [-n] [FILE...]\n", argv0);
}
2011-05-25 10:42:17 +00:00
int
main(int argc, char *argv[])
{
long n = 10;
FILE *fp;
2013-06-14 18:20:47 +00:00
ARGBEGIN {
case 'n':
n = estrtol(EARGF(usage()), 0);
break;
ARGNUM:
n = ARGNUMF(0);
break;
2013-06-14 18:20:47 +00:00
default:
usage();
} ARGEND;
if(argc == 0) {
2011-05-25 10:42:17 +00:00
head(stdin, "<stdin>", n);
2014-04-22 10:43:01 +00:00
} else {
for(; argc > 0; argc--, argv++) {
if(!(fp = fopen(argv[0], "r"))) {
weprintf("fopen %s:", argv[0]);
continue;
}
head(fp, argv[0], n);
fclose(fp);
}
2011-05-25 10:42:17 +00:00
}
2013-06-14 18:20:47 +00:00
return EXIT_SUCCESS;
2011-05-25 10:42:17 +00:00
}
static void
2011-05-25 10:42:17 +00:00
head(FILE *fp, const char *str, long n)
{
char buf[BUFSIZ];
2011-05-25 19:40:47 +00:00
long i = 0;
2011-05-25 10:42:17 +00:00
2011-05-25 19:40:47 +00:00
while(i < n && fgets(buf, sizeof buf, fp)) {
2011-05-25 10:42:17 +00:00
fputs(buf, stdout);
2011-05-25 19:40:47 +00:00
if(buf[strlen(buf)-1] == '\n')
i++;
}
2011-05-25 10:42:17 +00:00
if(ferror(fp))
eprintf("%s: read error:", str);
}