correct different arg names in linux and bsd man pages

This commit is contained in:
Khaïs COLIN 2024-10-15 14:44:11 +02:00
parent b86949e284
commit 29fbed55a3
5 changed files with 31 additions and 30 deletions

View file

@ -6,13 +6,13 @@
/* By: kcolin <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/15 11:28:05 by kcolin #+# #+# */
/* Updated: 2024/10/15 14:13:29 by kcolin ### ########.fr */
/* Updated: 2024/10/15 14:41:45 by kcolin ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
void ft_bzero(void *b, t_size len)
void ft_bzero(void *s, t_size n)
{
ft_memset(b, 0, len);
ft_memset(s, 0, n);
}