libft
|
Go to the source code of this file.
Functions | |
void | ft_putnstr_fd (char *s, size_t n, int fd) |
Writes the first n characters of a string to a file descriptor. More... | |
void ft_putnstr_fd | ( | char * | s, |
size_t | n, | ||
int | fd | ||
) |
Writes the first n characters of a string to a file descriptor.
s | The string, the characters of which to output. |
n | The number of characters to output. |
fd | The file descriptor. |
s
contains less than n
characters, behaviour is undefined. Definition at line 25 of file ft_putnstr_fd.c.