35 lines
1.2 KiB
C
35 lines
1.2 KiB
C
|
/* ************************************************************************** */
|
||
|
/* */
|
||
|
/* .--. _ */
|
||
|
/* test3.c |o_o || | */
|
||
|
/* |:_/ || |_ _ ___ __ */
|
||
|
/* By: houtworm <codam@houtworm.net> // \ \ __| | | \ \/ / */
|
||
|
/* (| | )|_| |_| |> < */
|
||
|
/* Created: 2023/02/21 03:00:42 by houtworm /'\_ _/`\__|\__,_/_/\_\ */
|
||
|
/* Updated: 2023/02/28 18:34:19 by houtworm \___)=(___/ */
|
||
|
/* */
|
||
|
/* ************************************************************************** */
|
||
|
|
||
|
#include "../../tmp/libft.h"
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
int r;
|
||
|
char *dst;
|
||
|
char *src;
|
||
|
|
||
|
r = 0;
|
||
|
dst = malloc(8 * 6);
|
||
|
src = malloc(8 * 6);
|
||
|
strcpy(dst, "Olleh");
|
||
|
strcpy(src, "Hello");
|
||
|
ft_memmove(dst, src, 5);
|
||
|
if (strncmp(dst, "Hello", 6))
|
||
|
r = 1;
|
||
|
free (dst);
|
||
|
free (src);
|
||
|
return (r);
|
||
|
}
|