1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-11-15 06:06:04 +00:00
oot/include/libc/string.h

14 lines
270 B
C
Raw Normal View History

#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