![]() |
tgrekov-pipex
HIVE pipex May 2024
|
Definition in file ft_memset.c.
#include "libft.h"Go to the source code of this file.
Functions | |
| void * | ft_memset (void *b, int c, size_t len) |
Fills len bytes of byte string b with value c. | |
| void * ft_memset | ( | void * | b, |
| int | c, | ||
| size_t | len | ||
| ) |
Fills len bytes of byte string b with value c.
| [in,out] | b | Pointer to start of byte string |
| [in] | c | Integer representation of value to write (cast to unsigned char) |
| [in] | len | Number of bytes to write |
| void* | b |
Definition at line 31 of file ft_memset.c.