diff options
author | Denis Vlasenko | 2006-09-26 09:22:12 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-09-26 09:22:12 +0000 |
commit | a552eeb498e0270ae9c87ef707865a764df99fb6 (patch) | |
tree | 1a385f7c6f1eab36fb66278e48840fe7fdc0b882 /include | |
parent | 3312c989e6a145dc38e5bb874e713aa92b2b0698 (diff) | |
download | busybox-a552eeb498e0270ae9c87ef707865a764df99fb6.zip busybox-a552eeb498e0270ae9c87ef707865a764df99fb6.tar.gz |
wget: add (configurable) large file support. Run tested.
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index 29df2c2..2a5b381 100644 --- a/include/libbb.h +++ b/include/libbb.h @@ -248,7 +248,9 @@ extern char *safe_strncpy(char *dst, const char *src, size_t size); extern int safe_strtoi(char *arg, int* value); extern int safe_strtod(char *arg, double* value); extern int safe_strtol(char *arg, long* value); +extern int safe_strtoll(char *arg, long long* value); extern int safe_strtoul(char *arg, unsigned long* value); +extern int safe_strtoull(char *arg, unsigned long long* value); struct suffix_mult { const char *suffix; |