-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_memchr.c
35 lines (32 loc) · 1.25 KB
/
ft_memchr.c
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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memchr.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: abaudot <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/01/05 15:06:16 by abaudot #+# #+# */
/* Updated: 2021/01/05 15:06:20 by abaudot ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void *ft_memchr(const void *s, int c, size_t n)
{
t_op lw;
t_op rep_c;
rep_c = c | (c << 8);
rep_c |= rep_c << 16;
rep_c |= rep_c << 32;
while (n > OPSIZ)
{
lw = *(t_op *)s ^ rep_c;
if ((lw - LOMAGIC) & ~lw & HIMAGIC)
break ;
n -= OPSIZ;
s += OPSIZ;
}
while (n--)
if (*(t_byte *)s++ == (t_byte)c)
return ((void *)s - 1);
return (NULL);
}