allwinner_a64/android/external/syslinux/dos/atou.c
2018-08-08 16:14:42 +08:00

9 lines
149 B
C

#include "mystuff.h"
unsigned int atou(const char *s)
{
unsigned int i = 0;
while (isdigit(*s))
i = i * 10 + (*s++ - '0');
return i;
}