mirror of
https://github.com/HarbourMasters/SpaghettiKart
synced 2026-05-23 15:02:12 -04:00
11 lines
198 B
C
11 lines
198 B
C
#ifndef STRING_H
|
|
#define STRING_H
|
|
|
|
#include <libultra/types.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
|