1
0
mirror of https://github.com/sm64pc/sm64pc.git synced 2025-04-08 23:35:40 +02:00
sm64pc/include/libc/string.h
2019-11-03 14:36:27 -05:00

11 lines
197 B
C

#ifndef STRING_H
#define STRING_H
#include "PR/ultratypes.h"
void *memcpy(void *dst, const void *src, size_t size);
size_t strlen(const char *str);
char *strchr(const char *str, s32 ch);
#endif