fractol/libft/src/ft_memset.c
2023-03-07 05:31:00 +01:00

30 lines
1.0 KiB
C

/* ************************************************************************** */
/* */
/* :::::::: */
/* ft_memset.c |o_o || | */
/* +:+ */
/* By: djonker <marvin@codam.nl> +#+ */
/* +#+ */
/* Created: 2020/11/01 08:42:45 by djonker #+# #+# */
/* Updated: 2023/02/28 20:13:47 by houtworm \___)=(___/ */
/* */
/* ************************************************************************** */
#include "../libft.h"
void *ft_memset(void *s, int c, size_t n)
{
char *p;
if (!s)
return (s);
p = s;
while (n > 0)
{
*p = c;
p++;
n--;
}
return (s);
}