Split alCopy from printf file, add NON_MATCHING which are copied from SM64, and VERY CLOSE, and add a libc directory like SM64

This commit is contained in:
Ryan Myers
2021-09-20 15:14:51 -04:00
parent 260a48c58a
commit 3ac26b9fdb
13 changed files with 357 additions and 37 deletions
+10
View File
@@ -0,0 +1,10 @@
#ifndef STRING_H
#define STRING_H
#include "PR/ultratypes.h"
void *memcpy(void *dst, const void *src, size_t size);
size_t strlen(const char *str);
char *strchr(const char *str, s32 ch);
#endif