Sign in
android
/
platform
/
external
/
syslinux
/
refs/heads/oreo-mr1-release
/
.
/
dos
/
atou.c
blob: e21736d1558457f65c292aa0789d17719f6845f3 [
file
] [
log
] [
blame
] [
edit
]
#include
"mystuff.h"
unsigned
int
atou
(
const
char
*
s
)
{
unsigned
int
i
=
0
;
while
(
isdigit
(*
s
))
i
=
i
*
10
+
(*
s
++
-
'0'
);
return
i
;
}