chore: use correct size_t instead of t_size
This commit is contained in:
parent
aad909fe23
commit
b81ad331b5
10 changed files with 40 additions and 40 deletions
|
|
@ -6,13 +6,13 @@
|
|||
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
|
||||
/* +#+#+#+#+#+ +#+ */
|
||||
/* Created: 2024/10/15 11:28:05 by kcolin #+# #+# */
|
||||
/* Updated: 2024/10/15 14:41:45 by kcolin ### ########.fr */
|
||||
/* Updated: 2024/10/16 15:18:24 by kcolin ### ########.fr */
|
||||
/* */
|
||||
/* ************************************************************************** */
|
||||
|
||||
#include "libft.h"
|
||||
|
||||
void ft_bzero(void *s, t_size n)
|
||||
void ft_bzero(void *s, size_t n)
|
||||
{
|
||||
ft_memset(s, 0, n);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue