-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathft_memmove_main.c
More file actions
23 lines (20 loc) · 1.09 KB
/
Copy pathft_memmove_main.c
File metadata and controls
23 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_memmove_main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: muhozkan <muhozkan@student.42.tr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/25 23:47:15 by muhozkan #+# #+# */
/* Updated: 2022/02/25 23:47:15 by muhozkan ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
void *ft_memmove(void *dest, const void *src, size_t n);
int main()
{
unsigned char src[] = "isg";
const char dst[] = "sorunu";
ft_memmove(src + 3, src,2);
printf("%p", dst);
}