1 2 3 4 5 6 7 8
#ifndef LIBC_STRCPY_H #define LIBC_STRCPY_H #include "ultra64.h" char* strcpy(char* dst, const char* src); #endif