cleaned up

This commit is contained in:
Markus Fröschle
2014-01-07 05:57:17 +00:00
parent e365f91254
commit 785ca43b11
8 changed files with 24 additions and 18 deletions

View File

@@ -35,6 +35,7 @@ extern char *strncat(char *dst, const char *src, size_t max);
extern int atoi(const char *c);
extern void *memcpy(void *dst, const void *src, size_t n);
extern void *memset(void *s, int c, size_t n);
extern int memcmp(const char *s1, const char *s2, size_t max);
extern void bzero(void *s, size_t n);
#define isdigit(c) (((c) >= '0') && ((c) <= '9'))