0
0
This commit is contained in:
Guy Baconniere
2021-08-26 12:00:00 +02:00
parent 5bc1009a3d
commit b2a5ed52a5
41 changed files with 657 additions and 60 deletions

View File

@@ -6,7 +6,7 @@
/* By: gbaconni <gbaconni@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/08/22 18:14:04 by gbaconni #+# #+# */
/* Updated: 2021/08/26 09:53:30 by gbaconni ### ########.fr */
/* Updated: 2021/08/26 11:46:51 by gbaconni ### ########.fr */
/* */
/* ************************************************************************** */
@@ -75,7 +75,7 @@ char *ft_copy(char *str, int size)
if (size > 0)
ft_strncpy(result, str, size);
else
result[0] = '\0';
result = 0;
return (result);
}