aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/memset.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/string/memset.c')
-rw-r--r--src/userspace/mlibc/string/memset.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/userspace/mlibc/string/memset.c b/src/userspace/mlibc/string/memset.c
new file mode 100644
index 0000000..fb5ab80
--- /dev/null
+++ b/src/userspace/mlibc/string/memset.c
@@ -0,0 +1,8 @@
+#include <stddef.h>
+
+void *memset(void *dest, char val, size_t count)
+{
+ char *temp = (char *) dest;
+ for (; count != 0; count--) *temp++ = val;
+ return dest;
+} \ No newline at end of file