mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 03:39:59 +00:00
12 lines
167 B
C
12 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
|