diff options
author | Rob Landley <rob@landley.net> | 2013-11-28 21:11:34 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2013-11-28 21:11:34 -0600 |
commit | b5e74165d1462d69deaecbf14305dbf2eee746d5 (patch) | |
tree | 039b23d58a1316bd69fcb68b4743800451c34fb9 /lib/lib.h | |
parent | 5ec4ab3113dcc813b6040d7ded38e297df99dc0e (diff) | |
download | toybox-b5e74165d1462d69deaecbf14305dbf2eee746d5.tar.gz |
Oops, cleaned up ifconfig uses atolx_range() instead of get_int_list(). Check that in.
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -134,6 +134,7 @@ int64_t peek(void *ptr, int size); void poke(void *ptr, uint64_t val, int size); struct string_list *find_in_path(char *path, char *filename); long atolx(char *c); +long atolx_range(char *numstr, long low, long high); int numlen(long l); int stridx(char *haystack, char needle); off_t fdlength(int fd); |