algorithm with no double nodes and nearly efficient enough still some optimizations to find for --big-superposition maps
19 lines
970 B
C
19 lines
970 B
C
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_bzero.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: tmaze <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2018/04/05 16:43:09 by tmaze #+# #+# */
|
|
/* Updated: 2018/04/06 10:49:12 by tmaze ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "libft.h"
|
|
|
|
void ft_bzero(void *s, size_t n)
|
|
{
|
|
ft_memset(s, 0, n);
|
|
}
|