fernly: wip

This commit is contained in:
Sean Cross 2014-07-04 17:31:19 +08:00
parent 9470228966
commit 7cb334571e
11 changed files with 1281 additions and 108 deletions

View file

@ -8,4 +8,18 @@ int _strcasecmp(const char *s1, const char *s2);
void *_memcpy(void *dst0, const void *src0, size_t length);
void _memset(void *dst0, char val, size_t length);
unsigned long _strtoul(const void *nptr, void **endptr, int base);
int _strlen(const char *s);
int _strnlen(const char *s, int maxlen);
/* ctype replacements */
int _isspace(char c);
int _isdigit(char c);
int _isxdigit(char c);
int _isupper(char c);
int _islower(char c);
int _isalpha(char c);
int _isalnum(char c);
int _toupper(char c);
#endif /* __BIONIC_H__ */