diff options
Diffstat (limited to 'include')
-rwxr-xr-x | include/game.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/game.h b/include/game.h index 071d93e..fd0dd3c 100755 --- a/include/game.h +++ b/include/game.h @@ -24,6 +24,7 @@ inline T clamp(T value, T one, T two) { return (value < one) ? one : ((value > t extern "C" {
int wcslen(const wchar_t *str);
+wchar_t *wcscpy(wchar_t *dest, const wchar_t *src);
int strlen(const char *str);
char *strcpy(char *dest, const char *src);
char *strncpy(char *dest, const char *src, int num);
|