Files

15 lines
257 B
C
Raw Permalink Normal View History

2020-10-14 21:13:33 -07:00
#ifndef STRING_H
#define STRING_H
2024-09-17 17:32:50 +02:00
#ifndef TARGET_N64
2024-05-01 10:09:49 -06:00
#include <libultra/types.h>
2024-09-17 17:32:50 +02:00
#else
#include <PR/ultratypes.h>
#endif
2020-10-14 21:13:33 -07:00
2024-08-28 01:47:39 +02:00
void* memcpy(void* dst, const void* src, size_t size);
size_t strlen(const char* str);
char* strchr(const char* str, s32 ch);
2020-10-14 21:13:33 -07:00
#endif