index
:
Libft
master
Reimplementation of libc functions
Thomas Vanbesien
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
ft_putchar_fd.c
blob: 9885816e14b83a6ab62a6c70e30c977a428d2833 (
plain
)
1
2
3
4
5
6
7
#include
<unistd.h>
void
ft_putchar_fd
(
char
c
,
int
fd
)
{
write
(
fd
,
&
c
,
1
);
}