summaryrefslogtreecommitdiff
path: root/src/libc/string.h
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-06-10 21:26:24 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-06-10 21:26:24 +0200
commitd6d1bdfefafff50b7b6d15d218c0a188570be541 (patch)
tree15ee8de727d0be5d126efda146b2879de0a72773 /src/libc/string.h
parenteea5bf4b859eb56c5772c58ca54937a90a10e7ee (diff)
downloadabaos-d6d1bdfefafff50b7b6d15d218c0a188570be541.tar.gz
abaos-d6d1bdfefafff50b7b6d15d218c0a188570be541.tar.bz2
some big renames into subdirs of aspects
updated README removed size_t in sys/types.h and sys/types.h itself, size_t is in stddef.h
Diffstat (limited to 'src/libc/string.h')
-rw-r--r--src/libc/string.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/libc/string.h b/src/libc/string.h
new file mode 100644
index 0000000..476c8c0
--- /dev/null
+++ b/src/libc/string.h
@@ -0,0 +1,12 @@
+#ifndef STRING_H
+#define STRING_H
+
+#include "stddef.h"
+
+void *memset( void *s, int c, size_t n );
+void *memmove( void *d, const void *s, size_t n );
+size_t strlen( const char *s );
+int strcmp( const char *s1, const char *s2 );
+size_t strlcpy( char *d, const char *s, size_t n );
+
+#endif // STRING_H