mirror of
https://github.com/n64decomp/mk64
synced 2026-05-24 06:50:53 -04:00
b1161c2ce8
Co-authored-by: MegaMech <MegaMech@users.noreply.github.com>
11 lines
197 B
C
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
|