repo.or.cz
/
syslinux-debian
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding debian version 3.55-2.
[syslinux-debian/hramrach.git]
/
dos
/
atou.c
blob
27663704ddeca250a4888435b628e96a82d2af91
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
}