blob: 6c1d4323907e91e36e109cd4b1daba8050fc95d5 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"
#ifndef TEST
void *
libsimple_memelem_inv(const void *hay_, size_t hayn, const void *sub_, size_t subn) /* TODO test, man */
{
switch (subn) {
case 0:
return NULL;
case 1:
return libsimple_memchr_inv(hay_, *(char *)sub_, hayn);
case 2:
{
uint16_t *hay = (void *)hay_;
uint16_t sub = *(uint16_t *)sub_;
for (; hayn--; hay++)
if (*hay != sub)
return hay;
break;
}
case 4:
{
uint32_t *hay = (void *)hay_;
uint32_t sub = *(uint32_t *)sub_;
for (; hayn--; hay++)
if (*hay != sub)
return hay;
break;
}
case 8:
{
uint64_t *hay = (void *)hay_;
uint64_t sub = *(uint64_t *)sub_;
for (; hayn--; hay++)
if (*hay != sub)
return hay;
break;
}
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;
}
break;
}
}
return NULL;
}
#else
#include "test.h"
int
main(void)
{
return 0;
}
#endif
|