Use estrtol() instead of atoi()

This commit is contained in:
sin 2013-10-27 09:46:21 +00:00
parent 298703ff2d
commit b2a0362bf8
1 changed files with 2 additions and 2 deletions

4
seq.c
View File

@ -98,7 +98,7 @@ digitsleft(const char *d)
if(*d == '+')
d++;
exp = strpbrk(d, "eE");
shift = exp ? atoi(&exp[1]) : 0;
shift = exp ? estrtol(&exp[1], 10) : 0;
return MAX(0, strspn(d, "-0123456789")+shift);
}
@ -110,7 +110,7 @@ digitsright(const char *d)
int shift, after;
exp = strpbrk(d, "eE");
shift = exp ? atoi(&exp[1]) : 0;
shift = exp ? estrtol(&exp[1], 10) : 0;
after = (d = strchr(d, '.')) ? strspn(&d[1], "0123456789") : 0;
return MAX(0, after-shift);