Go to the source code of this file.
◆ ft_putchar_fd()
| void ft_putchar_fd |
( |
char |
c, |
|
|
int |
fd |
|
) |
| |
◆ ft_putendl_fd()
| void ft_putendl_fd |
( |
char * |
s, |
|
|
int |
fd |
|
) |
| |
Definition at line 15 of file ft_putendl_fd.c.
void ft_putchar_fd(char c, int fd)
void ft_putstr_fd(char *s, int fd)
◆ ft_putnbr_fd()
| void ft_putnbr_fd |
( |
int |
n, |
|
|
int |
fd |
|
) |
| |
Definition at line 48 of file ft_putnbr_fd.c.
63 num_str_buf[buf_pos++] = (long_n % 10) +
'0';
67 num_str_buf[buf_pos++] =
'-';
68 num_str_buf[buf_pos] =
'\0';
static long ft_absl(long v)
static char * reverse_str(char *str)
◆ ft_putstr_fd()
| void ft_putstr_fd |
( |
char * |
s, |
|
|
int |
fd |
|
) |
| |
Definition at line 17 of file ft_putstr_fd.c.
size_t ft_strnlen(const char *str, size_t max_len)