You've already forked Diddy-Kong-Racing
mirror of
https://github.com/izzy2lost/Diddy-Kong-Racing.git
synced 2026-03-10 11:36:09 -07:00
* Massive libultra changes * Fix the build! * Remove crc comment that seemd to break the score script for some reason. * Update README score. * Apply some suggestions * rename sins and coss funcs.
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, int ch);
|
|
|
|
#endif
|