/* ************************************************************************** */ /* LE - / */ /* / */ /* ft_memset.c .:: .:/ . .:: */ /* +:+:+ +: +: +:+:+ */ /* By: rbousset +:+ +: +: +:+ */ /* #+# #+ #+ #+# */ /* Created: 2019/10/08 13:41:09 by rbousset #+# ## ## #+# */ /* Updated: 2019/10/13 08:38:10 by rbousset ### #+. /#+ ###.fr */ /* / */ /* / */ /* ************************************************************************** */ #include void *ft_memset(void *b, int c, size_t len) { unsigned char *str; str = b; if (!len) return (b); while (len > 0) { *str = (unsigned char)c; str++; len--; } return (b); }