Implemented fclose() and strrchr()

This commit is contained in:
Max Wash
2020-07-18 17:22:20 +01:00
parent 89e40d126b
commit 17ce639206
4 changed files with 41 additions and 0 deletions

View File

@@ -19,6 +19,8 @@ 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 *strrchr(const char *s, int c);
extern char *strdup(const char *s);
#if defined(__cplusplus)