libft
Loading...
Searching...
No Matches
ft_bzero.c File Reference
#include "libft.h"

Go to the source code of this file.

Functions

void ft_bzero (void *s, size_t n)
 Zero a byte string.
 

Function Documentation

◆ ft_bzero()

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.

Parameters
sPointer to memory
nNumber of bytes

Definition at line 15 of file ft_bzero.c.