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 upstream version 3.35.
[syslinux-debian/hramrach.git]
/
dos
/
mystuff.h
blob
83f072f5b04b033ab1a2d1cf269599a7b6f5541f
1
#ifndef MYSTUFF_H
2
#define MYSTUFF_H
3
4
#define NULL ((void *)0)
5
6
unsigned int
skip_atou
(
const char
**
s
);
7
unsigned int
atou
(
const char
*
s
);
8
9
static
inline
int
10
isdigit
(
int
ch
)
11
{
12
return
(
ch
>=
'0'
) && (
ch
<=
'9'
);
13
}
14
15
#endif
/* MYSTUFF_H */