ldlinux: Don't delete ldlinux.c32 with 'make clean'
[syslinux.git] / memdump / mystuff.h
blobdce0cb5fe88c6b7683409d4c1e000ea80f7bb5c7
1 #ifndef MYSTUFF_H
2 #define MYSTUFF_H
4 #include <stdlib.h>
6 typedef signed char int8_t;
7 typedef unsigned char uint8_t;
8 typedef signed short int16_t;
9 typedef unsigned short uint16_t;
10 typedef signed int int32_t;
11 typedef unsigned int uint32_t;
12 typedef signed long long int64_t;
13 typedef unsigned long long uint64_t;
15 unsigned int skip_atou(const char **s);
16 unsigned long strtoul(const char *, char **, int);
18 static inline int isdigit(int ch)
20 return (ch >= '0') && (ch <= '9');
23 #endif /* MYSTUFF_H */