This repository has been archived on 2023-08-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RescueBootCD/extra/syslinux-3.09/dos/mystuff.h

16 lines
237 B
C

#ifndef MYSTUFF_H
#define MYSTUFF_H
#define NULL ((void *)0)
unsigned int skip_atou(const char **s);
unsigned int atou(const char *s);
static inline int
isdigit(int ch)
{
return (ch >= '0') && (ch <= '9');
}
#endif /* MYSTUFF_H */