32 lines
1.1 KiB
C
32 lines
1.1 KiB
C
/* ************************************************************************** */
|
|
/* */
|
|
/* .--. _ */
|
|
/* test8.c |o_o || | */
|
|
/* |:_/ || |_ _ ___ __ */
|
|
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
|
|
/* (| | )|_| |_| |> < */
|
|
/* Created: 2023/02/21 03:03:52 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
|
|
/* Updated: 2023/02/28 20:38:24 by houtworm \___)=(___/ */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../../tmp/libft.h"
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
int main(void)
|
|
{
|
|
int r;
|
|
char *s;
|
|
char *p;
|
|
|
|
r = 0;
|
|
s = malloc(8 * 8);
|
|
memcpy(s, "H\0he\0\0o", 7);
|
|
p = ft_memchr(s, 'e', 4);
|
|
if (memcmp(p, "e\0\0o", 4))
|
|
r = 1;
|
|
free(s);
|
|
return (r);
|
|
}
|