Files

11 lines
197 B
C
Raw Permalink Normal View History

2019-11-03 14:36:27 -05:00
#ifndef STRING_H
#define STRING_H
2024-05-19 09:38:22 -04:00
#include <PR/ultratypes.h>
2019-11-03 14:36:27 -05:00
void *memcpy(void *dst, const void *src, size_t size);
size_t strlen(const char *str);
char *strchr(const char *str, s32 ch);
#endif