diff options
Diffstat (limited to 'include/MSL_C/string.h')
-rw-r--r-- | include/MSL_C/string.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/MSL_C/string.h b/include/MSL_C/string.h new file mode 100644 index 0000000..83b7bd0 --- /dev/null +++ b/include/MSL_C/string.h @@ -0,0 +1,18 @@ +#ifndef POKEREVO_STRING_H
+#define POKEREVO_STRING_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void *memset(void *s, int c, size_t n);
+void *memmove(void *dest, const void *src, size_t n);
+void *memcpy(void *dest, const void *src, size_t n);
+int strcmp(const char *s1, const char *s2);
+int strncmp(const char *s1, const char *s2, size_t n);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif //POKEREVO_STRING_H
|