simplify atoi36, it does not need to eat whitespace

This commit is contained in:
Enno Rehling 2015-09-05 18:18:22 +02:00
parent 2e3c0db02a
commit b631f539ce
1 changed files with 0 additions and 3 deletions

View File

@ -32,9 +32,6 @@ int atoi36(const char *str)
assert(s);
if (!(*s))
return 0;
while (isxspace(*(unsigned char *)s))
++s;
if (*s == '-') {
sign = -1;
++s;