aboutsummaryrefslogtreecommitdiffstats
path: root/mempset.c
diff options
context:
space:
mode:
Diffstat (limited to 'mempset.c')
-rw-r--r--mempset.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/mempset.c b/mempset.c
new file mode 100644
index 0000000..e69dcd1
--- /dev/null
+++ b/mempset.c
@@ -0,0 +1,24 @@
+/* See LICENSE file for copyright and license details. */
+#include "libsimple.h"
+#ifndef TEST
+
+
+extern inline void *libsimple_mempset(void *, int, size_t);
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ char buf[100];
+
+ stpcpy(buf, "abc123");
+ assert(!strcmpnul(libsimple_mempset(buf, '.', 3), "123"));
+ assert(!strcmp(buf, "...123"));
+
+ return 0;
+}
+
+#endif