diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-07 17:29:12 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-07 17:29:12 +0000 |
commit | a9c6bc41e99e0c28d524060805429c7b742546a7 (patch) | |
tree | d22470e744557d02a92e205de822fd418d3190b1 /include/libbb.h | |
parent | bae7c1ac240211bd3183d48888708bfbc4f96a6d (diff) | |
download | busybox-w32-a9c6bc41e99e0c28d524060805429c7b742546a7.tar.gz busybox-w32-a9c6bc41e99e0c28d524060805429c7b742546a7.tar.bz2 busybox-w32-a9c6bc41e99e0c28d524060805429c7b742546a7.zip |
Define bb_xgetlarg as a standard interface for extracting
numbers from getopt which includes careful error checking.
-Erik
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index c057ce493..8cb72de8b 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -121,6 +121,7 @@ int recursive_action(const char *fileName, int recurse, int followLinks, int dep | |||
121 | void* userData); | 121 | void* userData); |
122 | 122 | ||
123 | extern int parse_mode( const char* s, mode_t* theMode); | 123 | extern int parse_mode( const char* s, mode_t* theMode); |
124 | extern long bb_xgetlarg(char *arg, int base, long lower, long upper); | ||
124 | 125 | ||
125 | extern int get_kernel_revision(void); | 126 | extern int get_kernel_revision(void); |
126 | 127 | ||