summaryrefslogtreecommitdiffstats
path: root/sysroot/usr/include/string.h
diff options
context:
space:
mode:
authorJon Santmyer <jon@jonsantmyer.com>2024-03-11 21:40:28 -0400
committerJon Santmyer <jon@jonsantmyer.com>2024-03-11 21:40:28 -0400
commit50392995d6e7f3a10fb74bb2f9073a4790f8933c (patch)
treec89b067b3bacf35e092af5c31fb6e6a08921f31c /sysroot/usr/include/string.h
downloadjove-env-master.tar.gz
jove-env-master.tar.bz2
jove-env-master.zip
simple env with basic test init programHEADmaster
Diffstat (limited to 'sysroot/usr/include/string.h')
-rw-r--r--sysroot/usr/include/string.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/sysroot/usr/include/string.h b/sysroot/usr/include/string.h
new file mode 100644
index 0000000..d55bc37
--- /dev/null
+++ b/sysroot/usr/include/string.h
@@ -0,0 +1,11 @@
+#ifndef _STRING_H
+#define _STRING_H 1
+
+#include <stddef.h>
+
+void *memcpy(void *dest, const void *src, size_t size);
+void *memset(void *dest, int byte, size_t size);
+char *strcpy(char *dest, const char *src);
+size_t strlen(const char *str);
+
+#endif