diff options
Diffstat (limited to 'src/lib/string.c')
-rw-r--r-- | src/lib/string.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/lib/string.c b/src/lib/string.c index dd7d1512ea..d23ed1f7e5 100644 --- a/src/lib/string.c +++ b/src/lib/string.c @@ -125,15 +125,6 @@ int strncmp(const char *s1, const char *s2, int maxlen) return 0; } -unsigned int skip_atoi(char **s) -{ - unsigned int i = 0; - - while (isdigit(**s)) - i = i*10 + *((*s)++) - '0'; - return i; -} - int strspn(const char *str, const char *spn) { int ret = 0; |