summaryrefslogtreecommitdiff
path: root/src/PowerPC_EABI_Support
diff options
context:
space:
mode:
authorrobojumper <robojumper@gmail.com>2025-03-28 18:42:09 +0100
committerrobojumper <robojumper@gmail.com>2025-03-28 18:42:09 +0100
commitd35c4adeeffc0629f705518aedd9e8d4b4570364 (patch)
treed005df9c3ec37e9bdb48824efc880b830a0a4c1b /src/PowerPC_EABI_Support
parent0766801142a25efcad59e98b77bca43b1c02bae0 (diff)
Running out of ideas for G3DUtility
Diffstat (limited to 'src/PowerPC_EABI_Support')
-rw-r--r--src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring2
-rw-r--r--src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring
index 8b388ec0..8a62a363 100644
--- a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring
+++ b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/cstring
@@ -19,7 +19,7 @@ using ::strlen;
using ::strncat;
using ::strncmp;
using ::strncpy;
-// using ::strstr;
+using ::strstr;
} // namespace std
#endif
diff --git a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h
index 86c421b3..8e36bf83 100644
--- a/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h
+++ b/src/PowerPC_EABI_Support/MSL/MSL_C/MSL_Common/Include/string.h
@@ -17,6 +17,7 @@ char *strrchr(const char *str, int c);
char *strchr(const char *str, int c);
int strncmp(const char *str1, const char *str2, size_t n);
int strcmp(const char *str1, const char *str2);
+char *strstr(const char *str1, const char *str2);
char *strncat(char *dst, const char *src, size_t n);
char *strcat(char *dst, const char *src);
char *strncpy(char *dst, const char *src, size_t n);