|
libft
|
#include "libft.h"Go to the source code of this file.
Functions | |
| void | ft_bzero (void *s, size_t n) |
| Zero a byte string. | |
| void ft_bzero | ( | void * | s, |
| size_t | n | ||
| ) |
Zero a byte string.
Zeroes n number of bytes in memory starting from location pointed by s.
| s | Pointer to memory |
| n | Number of bytes |
Definition at line 15 of file ft_bzero.c.