Files
af/include/libc/strcpy.h
T
Derek Hensley 282ac6d404 Libido OK (#84)
* libido OK

* boot cleanup

* format

* renames
2023-09-02 19:42:26 -07:00

9 lines
117 B
C

#ifndef LIBC_STRCPY_H
#define LIBC_STRCPY_H
#include "ultra64.h"
char* strcpy(char* dst, const char* src);
#endif