Match and link printf.c

This commit is contained in:
Phillip Stephens
2025-05-21 09:15:56 -07:00
parent 164136f3b6
commit 276b48146d
4 changed files with 9 additions and 2 deletions
+1
View File
@@ -19,6 +19,7 @@ char* strncpy(char* dest, const char* src, size_t num);
int strcmp(const char* s1, const char* s2);
int strncmp(const char* s1, const char* s2, size_t n);
char* strncat(char* dest, const char* src, size_t n);
char* strchr(const char* str, int chr);
#ifdef __cplusplus
}