blob: 778ef8b8ba34e6e65f2dcd71493682a8d356c2e2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
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
|