aboutsummaryrefslogtreecommitdiff
path: root/head.c
blob: 83edfe847412a020e808cb80b05f461b2f42071b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* SPDX-License-Identifier: BSD-3-Clause */
/*
 * Copyright (C) 2022, 2023 Ferass El Hafidi <vitali64pmemail@protonmail.com>
 * Copyright (C) 2022 Leah Rowe <leah@libreboot.org>
 */
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>

#define REQ_PRINT_USAGE /* Require print_usage() from common.h */
#define REQ_ERRPRINT /* Require errprint() from common.h */
#define DESCRIPTION "Copy file to standard output until <number> lines."
#define OPERANDS    "[-n number] [file] ..."
#include "common.h"

#ifdef FASESBOX
int head_main(int argc, char *argv[]) {
#else
int main(int argc, char *argv[]) {
#endif
	int argument, i, lines = 10, lines_printed;
	FILE *file;
	char s[4096], *argv0 = strdup(argv[0]);

	while ((argument = getopt(argc, argv, "n:")) != -1) {
		if (argument == '?' || argument == ':') {
			print_usage(argv[0], DESCRIPTION, OPERANDS, VERSION);
			return 1;
		}
		else if (argument == 'n') {
			lines = strtol(optarg, NULL, 10);
			if (errno) return errprint(argv[0], "strtol()", errno);
		}
		else
			lines = 10;
	} argc -= optind; argv += optind;

	for (i = 0; i != argc || argc == 0; i++) {
		if (argc == 0 || !strcmp(argv[i], "-"))
			file = stdin;
		else file = fopen(argv[i], "r");
		if (file == NULL) 
			return errprint(argv0, argv[i], errno); /* Something went wrong */
		for (lines_printed = 1; lines_printed <= lines; lines_printed++) {
			if (fgets(s, 4096, file) != NULL)
				printf("%s", s);
			else return errprint(argv0, "fgets()", errno);
		}
		if (file != stdin) fclose(file);
		if (argc == 0) return 0; /* TODO: Remove this stupid hack. */
	}
	return errprint(argv0, NULL, errno);
}