aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-12-18 21:38:57 +0000
committerMatt Kraai <kraai@debian.org>2000-12-18 21:38:57 +0000
commit24ac0179617e43ab517141fe5497f4ebac108678 (patch)
tree333d1ef43d092edd4b41030112cb71559bf9cb3a /include/busybox.h
parent0d2acb0eadf2d6ae9d60fa3fe9f897e254eaadda (diff)
downloadbusybox-w32-24ac0179617e43ab517141fe5497f4ebac108678.tar.gz
busybox-w32-24ac0179617e43ab517141fe5497f4ebac108678.tar.bz2
busybox-w32-24ac0179617e43ab517141fe5497f4ebac108678.zip
Rewrote dd.
Diffstat (limited to 'include/busybox.h')
-rw-r--r--include/busybox.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 5ff3975b9..442352537 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -190,6 +190,13 @@ extern char *xstrdup (const char *s);
190#endif 190#endif
191extern char *xstrndup (const char *s, int n); 191extern char *xstrndup (const char *s, int n);
192 192
193struct suffix_mult {
194 char *suffix;
195 int mult;
196};
197
198extern unsigned long parse_number(const char *numstr, struct suffix_mult *suffixes);
199
193 200
194/* These parse entries in /etc/passwd and /etc/group. This is desirable 201/* These parse entries in /etc/passwd and /etc/group. This is desirable
195 * for BusyBox since we want to avoid using the glibc NSS stuff, which 202 * for BusyBox since we want to avoid using the glibc NSS stuff, which