]> nv-tegra.nvidia Code Review - android/platform/external/syslinux.git/blob - dos/atou.c
Clean checkin of the 6.03 code
[android/platform/external/syslinux.git] / dos / atou.c
1 #include "mystuff.h"
2
3 unsigned int atou(const char *s)
4 {
5     unsigned int i = 0;
6     while (isdigit(*s))
7         i = i * 10 + (*s++ - '0');
8     return i;
9 }