Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
MorsGames
GitHub Repository: MorsGames/sm64plus
Path: blob/master/include/libc/string.h
7857 views
1
#ifndef STRING_H
2
#define STRING_H
3
4
#include "PR/ultratypes.h"
5
6
void *memcpy(void *dst, const void *src, size_t size);
7
size_t strlen(const char *str);
8
char *strchr(const char *str, s32 ch);
9
10
#endif
11
12