forked from maandree/util-linux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathline.c
45 lines (39 loc) · 739 Bytes
/
line.c
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
/*
* line - read one line
*
* Gunnar Ritter, Freiburg i. Br., Germany, December 2000.
*
* Public Domain.
*/
/*
* This command is deprecated. The utility is in maintenance mode,
* meaning we keep them in source tree for backward compatibility
* only. Do not waste time making this command better, unless the
* fix is about security or other very critical issue.
*
* See Documentation/deprecated.txt for more information.
*/
#include <stdio.h>
#include <unistd.h>
static int status; /* exit status */
static void
doline(int fd)
{
char c;
for (;;) {
if (read(fd, &c, 1) <= 0) {
status = 1;
break;
}
if (c == '\n')
break;
putchar(c);
}
putchar('\n');
}
int
main(void)
{
doline(0);
return status;
}