mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
11 lines
167 B
C
11 lines
167 B
C
#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
|