mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-13 03:14:38 +00:00
libc cleanup (#1568)
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
This commit is contained in:
parent
4e55168eaa
commit
3475651701
46 changed files with 571 additions and 432 deletions
11
include/libc/string.h
Normal file
11
include/libc/string.h
Normal file
|
@ -0,0 +1,11 @@
|
|||
#ifndef STRING_H
|
||||
#define STRING_H
|
||||
|
||||
#include "stddef.h"
|
||||
|
||||
char* strchr(const char*, int);
|
||||
size_t strlen(const char*);
|
||||
|
||||
void* memcpy(void*, const void*, size_t);
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue