1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/def/string.h
2022-01-31 19:05:17 -05:00

11 lines
321 B
C

#pragma once
#ifdef INTERNAL_SRC_LIBULTRA_LIBC_BAK_STRING_C
u32 bcmp(void* __sl, void* __s2, u32 __n);
void* memcpy(void* dst, const void* src, u32 size);
u32 strlen(const char* str);
#else
u32 bcmp(void* __sl, void* __s2, u32 __n);
void* memcpy(void* dst, const void* src, u32 size);
u32 strlen(const char* str);
#endif