mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-14 21:40:03 +00:00
cbf9eacf42
* [headers 12] add kaleido_manager.h, move various protos to headers * BSS * bss
13 lines
270 B
C
13 lines
270 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);
|
|
void* memmove(void* dest, const void* src, size_t len);
|
|
void* memset(void* dest, int val, size_t len);
|
|
|
|
#endif
|