-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_putchar.c
executable file
·22 lines (19 loc) · 1018 Bytes
/
ft_putchar.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: mwilliam <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/05 17:45:13 by mwilliam #+# #+# */
/* Updated: 2016/11/14 10:23:27 by mwilliam ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
/*
** Outputs the character 'c' to the standard output
*/
void ft_putchar(char c)
{
write(1, &c, 1);
}