1
0

updated libft

This commit is contained in:
2024-03-12 14:34:46 +01:00
parent 63a5504b82
commit 434b39969d
4 changed files with 26 additions and 23 deletions

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 16:02:26 by adjoly #+# #+# */
/* Updated: 2024/02/04 14:22:20 by adjoly ### ########.fr */
/* Updated: 2024/03/04 10:10:58 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,7 +14,7 @@
void *ft_calloc(size_t nmemb, size_t size)
{
char *result;
void *result;
size_t i;
i = 0;