diff options
author | Matt Kraai | 2000-12-18 21:38:57 +0000 |
---|---|---|
committer | Matt Kraai | 2000-12-18 21:38:57 +0000 |
commit | 24ac0179617e43ab517141fe5497f4ebac108678 (patch) | |
tree | 333d1ef43d092edd4b41030112cb71559bf9cb3a /include | |
parent | 0d2acb0eadf2d6ae9d60fa3fe9f897e254eaadda (diff) | |
download | busybox-24ac0179617e43ab517141fe5497f4ebac108678.zip busybox-24ac0179617e43ab517141fe5497f4ebac108678.tar.gz |
Rewrote dd.
Diffstat (limited to 'include')
-rw-r--r-- | include/busybox.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/busybox.h b/include/busybox.h index 5ff3975..4423525 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -190,6 +190,13 @@ extern char *xstrdup (const char *s); #endif extern char *xstrndup (const char *s, int n); +struct suffix_mult { + char *suffix; + int mult; +}; + +extern unsigned long parse_number(const char *numstr, struct suffix_mult *suffixes); + /* These parse entries in /etc/passwd and /etc/group. This is desirable * for BusyBox since we want to avoid using the glibc NSS stuff, which |