ft_memset
Subject
MEMSET(3) (simplified)
NAME
memset -- fill a byte string with a byte value
SYNOPSIS
void *memset(void *b, int c, size_t len);
DESCRIPTION
The memset() function writes len bytes of value c (converted to an unsigned char) to the string b.
RETURN VALUES
The memset() function returns its first argument.Understandable explanation
Hints
Commented solution
Last updated