Implemented lots of new functions

This commit is contained in:
Max Wash
2020-07-16 14:02:51 +01:00
parent a614cfa25c
commit 405e98717b
24 changed files with 541 additions and 3 deletions

View File

@@ -16,6 +16,11 @@ extern size_t strlen(const char *str);
extern int strcmp(const char *a, const char *b);
extern int strncmp(const char *a, const char *b, size_t sz);
extern char *strcpy(char *dest, const char *src);
extern char *strncpy(char *dest, const char *src, size_t sz);
extern char *strdup(const char *s);
#if defined(__cplusplus)
} /* extern "C" */
#endif