mirror of
https://github.com/zeldaret/oot.git
synced 2025-02-09 14:06:54 +00:00
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
|