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

15 lines
199 B
C

static inline int
isdigit(int ch)
{
return (ch >= '0') && (ch <= '9');
}
unsigned int atou(const char *s)
{
unsigned int i = 0;
while (isdigit(*s))
i = i*10 + (*s++ - '0');
return i;
}