diff options
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 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 |
191 | extern char *xstrndup (const char *s, int n); | 191 | extern char *xstrndup (const char *s, int n); |
192 | 192 | ||
193 | struct suffix_mult { | ||
194 | char *suffix; | ||
195 | int mult; | ||
196 | }; | ||
197 | |||
198 | extern 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 |