6 #define ALIGN (sizeof(size_t))
7 #define ONES ((size_t)-1/UCHAR_MAX)
8 #define HIGHS (ONES * (UCHAR_MAX/2+1))
9 #define HASZERO(x) ((x)-ONES & ~(x) & HIGHS)
11 char *__strchrnul(const char *s, int c)
16 if (!c) return (char *)s + strlen(s);
18 for (; (uintptr_t)s % ALIGN; s++)
19 if (!*s || *(unsigned char *)s == c) return (char *)s;
21 for (w = (void *)s; !HASZERO(*w) && !HASZERO(*w^k); w++);
22 for (s = (void *)w; *s && *(unsigned char *)s != c; s++);
26 weak_alias(__strchrnul, strchrnul);