aboutsummaryrefslogtreecommitdiffstats
path: root/memelemscan_inv.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--memelemscan_inv.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/memelemscan_inv.c b/memelemscan_inv.c
new file mode 100644
index 0000000..778ef8b
--- /dev/null
+++ b/memelemscan_inv.c
@@ -0,0 +1,60 @@
+/* See LICENSE file for copyright and license details. */
+#include "libsimple.h"
+#ifndef TEST
+
+
+void *
+libsimple_memelemscan_inv(const void *hay_, size_t hayn, const void *sub_, size_t subn) /* TODO test, man */
+{
+ switch (subn) {
+ case 0:
+ return (void *)hay_;
+ case 1:
+ return libsimple_memscan_inv(hay_, *(char *)sub_, hayn);
+ case 2:
+ {
+ uint16_t *hay = (void *)hay_;
+ uint16_t sub = *(uint16_t *)sub_;
+ for (; hayn-- && *hay == sub; hay++);
+ return hay;
+ }
+ case 4:
+ {
+ uint32_t *hay = (void *)hay_;
+ uint32_t sub = *(uint32_t *)sub_;
+ for (; hayn-- && *hay == sub; hay++);
+ return hay;
+ }
+ case 8:
+ {
+ uint64_t *hay = (void *)hay_;
+ uint64_t sub = *(uint64_t *)sub_;
+ for (; hayn-- && *hay == sub; hay++);
+ return hay;
+ }
+ default:
+ {
+ char *hay = (void *)hay_;
+ const char *sub = sub_;
+ size_t i;
+ for (; hayn--; hay += subn) {
+ for (i = 0; i < subn; i++)
+ if (hay[i] != sub[i])
+ return hay;
+ }
+ return hay;
+ }
+ }
+}
+
+
+#else
+#include "test.h"
+
+int
+main(void)
+{
+ return 0;
+}
+
+#endif