diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-05-12 21:40:41 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-05-12 21:40:41 +0200 |
| commit | d4aeabeac0a8bd1665b14aacf487df17198c1ab9 (patch) | |
| tree | ef25802fc5272bd6698aa7ea33770d66c49d9911 /src/mem/ft_memcpy.c | |
| parent | 966eb29634a84496e0851ef2b5a7d64f413d33ed (diff) | |
| download | libft-d4aeabeac0a8bd1665b14aacf487df17198c1ab9.tar.gz libft-d4aeabeac0a8bd1665b14aacf487df17198c1ab9.tar.bz2 libft-d4aeabeac0a8bd1665b14aacf487df17198c1ab9.zip | |
Fixing/refactoring ft_getline, fixed/normed ft_memchr, added ft_strmove
Diffstat (limited to 'src/mem/ft_memcpy.c')
| -rw-r--r-- | src/mem/ft_memcpy.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mem/ft_memcpy.c b/src/mem/ft_memcpy.c index 1f84bfd..699111f 100644 --- a/src/mem/ft_memcpy.c +++ b/src/mem/ft_memcpy.c @@ -6,11 +6,10 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 10:00:07 by cacharle #+# #+# */ -/* Updated: 2020/01/17 10:39:04 by cacharle ### ########.fr */ +/* Updated: 2020/05/12 20:49:35 by charles ### ########.fr */ /* */ /* ************************************************************************** */ -#include "libft.h" #include "libft_mem.h" void *ft_memcpy(void *dest, const void *src, size_t n) |
