diff options
author | Mark Whitley <markw@lineo.com> | 2000-10-09 18:56:47 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-10-09 18:56:47 +0000 |
commit | 872138de50b1c5bbf105b0243f5778fcb02b310b (patch) | |
tree | bae88fc4587a4d0aa9ec228c1006f4b364d0633e /miscutils | |
parent | 7a86e61a54f75c6c457be177fb20f6dde27c06d3 (diff) | |
download | busybox-w32-872138de50b1c5bbf105b0243f5778fcb02b310b.tar.gz busybox-w32-872138de50b1c5bbf105b0243f5778fcb02b310b.tar.bz2 busybox-w32-872138de50b1c5bbf105b0243f5778fcb02b310b.zip |
Added cmp and readlink applets from Matt Kraai.
Diffstat (limited to 'miscutils')
-rw-r--r-- | miscutils/readlink.c | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/miscutils/readlink.c b/miscutils/readlink.c new file mode 100644 index 000000000..5a798c0ea --- /dev/null +++ b/miscutils/readlink.c | |||
@@ -0,0 +1,49 @@ | |||
1 | /* vi: set sw=4 ts=4: */ | ||
2 | /* | ||
3 | * Mini readlink implementation for busybox | ||
4 | * | ||
5 | * | ||
6 | * Copyright (C) 2000 by Lineo, inc. | ||
7 | * Written by Matt Kraai <kraai@alumni.carnegiemellon.edu> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
17 | * General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
22 | * | ||
23 | */ | ||
24 | |||
25 | #include "busybox.h" | ||
26 | #include <errno.h> | ||
27 | #include <unistd.h> | ||
28 | |||
29 | int readlink_main(int argc, char **argv) | ||
30 | { | ||
31 | char *buf = NULL; | ||
32 | int bufsize = 128, size = 128; | ||
33 | |||
34 | if (argc != 2) | ||
35 | usage(readlink_usage); | ||
36 | |||
37 | while (bufsize < size + 1) { | ||
38 | bufsize *= 2; | ||
39 | buf = xrealloc(buf, bufsize); | ||
40 | size = readlink(argv[1], buf, bufsize); | ||
41 | if (size == -1) | ||
42 | fatalError("%s: %s\n", argv[1], strerror(errno)); | ||
43 | } | ||
44 | |||
45 | buf[size] = '\0'; | ||
46 | puts(buf); | ||
47 | |||
48 | return EXIT_SUCCESS; | ||
49 | } | ||