diff options
author | Rob Landley <rob@landley.net> | 2014-06-09 07:12:49 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-06-09 07:12:49 -0500 |
commit | 8115fc121c0ee0b11ba2752438ff500cce48e347 (patch) | |
tree | 97a41f560ce8556fae7b13469c5d4d38cc4bd5ff /lib/lib.h | |
parent | e031a5e24e5b0479717474d5d08ca9abda2f580a (diff) | |
download | toybox-8115fc121c0ee0b11ba2752438ff500cce48e347.tar.gz |
Forgot to check in strstart().
Diffstat (limited to 'lib/lib.h')
-rw-r--r-- | lib/lib.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -145,6 +145,7 @@ long atolx(char *c); long atolx_range(char *numstr, long low, long high); int numlen(long l); int stridx(char *haystack, char needle); +int strstart(char **a, char *b); off_t fdlength(int fd); void loopfiles_rw(char **argv, int flags, int permissions, int failok, void (*function)(int fd, char *name)); |