Archived
1
0
Fork 0
This repository has been archived on 2025-03-06. You can view files and clone it, but cannot push or open issues or pull requests.
sm64/include/string.h
2019-08-25 00:46:40 -04:00

8 lines
186 B
C

#ifndef _STRING_H_
#define _STRING_H_
#include "PR/ultratypes.h"
void* memcpy(void*, const void*, size_t);
size_t strlen(const u8 *str);
const u8 *strchr(const u8 *str, s32 ch);
#endif