mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
10 lines
197 B
C
10 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
|