diff options
| author | robojumper <robojumper@gmail.com> | 2025-05-25 16:29:42 +0200 |
|---|---|---|
| committer | robojumper <robojumper@gmail.com> | 2025-05-25 16:32:47 +0200 |
| commit | f7884242c7e31b516d56ba4d9f4ac5ce2155f13d (patch) | |
| tree | c17d3ce6204353d27d1d9e152cf9a1fca035dc47 /src/PowerPC_EABI_Support | |
| parent | b5c3d85ea29678b73ac5140015f16ecc542bb060 (diff) | |
Import of more nw4r::snd from https://github.com/kiwi515/ogws
Co-authored-by: kiwi515 <49212064+kiwi515@users.noreply.github.com>
Diffstat (limited to 'src/PowerPC_EABI_Support')
| -rw-r--r-- | src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring.h b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring.h index e7bdf55e..4b35acdf 100644 --- a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring.h +++ b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring.h @@ -8,6 +8,9 @@ inline size_t strlen(const char *str) { return ::strlen(str); } +using ::strncpy; +using ::strncat; + inline char *strcpy(char *dest, const char *src) { return ::strcpy(dest, src); } |
