blob: a8fed8f8bf4d4baffcad7129c392c180149deae6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* ************************************************************************** */
/* LE - / */
/* / */
/* ft_putchar_fd.c .:: .:/ . .:: */
/* +:+:+ +: +: +:+:+ */
/* By: rbousset <marvin@le-101.fr> +:+ +: +: +:+ */
/* #+# #+ #+ #+# */
/* Created: 2019/10/13 08:27:19 by rbousset #+# ## ## #+# */
/* Updated: 2019/10/13 08:49:34 by rbousset ### #+. /#+ ###.fr */
/* / */
/* / */
/* ************************************************************************** */
#include <unistd.h>
int
ft_putchar_fd(char c, int fd)
{
return (write(fd, &c, 1));
}
|