index
:
libft.git
cub3d
fractol
ft_ls
ft_select
ft_ssl
malloc
master
minishell
push_swap
rendu
scop
School project: Rewritting some libc functions and adding new ones
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
ft_putchar_fd.c
blob: 405bbe489e9247c18a817bdee0e6a639a16a8f30 (
plain
)
1
2
3
4
5
6
#include <unistd.h>
void
ft_putchar_fd
(
char
c
,
int
fd
)
{
write
(
fd
, &
c
,
1
);
}