Merge commit 'hdt-0.3.5'
[profile/ivi/syslinux.git] / dos / mystuff.h
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 isdigit(int ch)
10 {
11     return (ch >= '0') && (ch <= '9');
12 }
13
14 #endif /* MYSTUFF_H */