42/rushes/rush00/ex00/ft_putchar.c
2016-11-20 02:20:23 +02:00

19 lines
972 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gtertysh <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/10/30 14:20:03 by gtertysh #+# #+# */
/* Updated: 2016/10/30 14:20:52 by gtertysh ### ########.fr */
/* */
/* ************************************************************************** */
#include <unistd.h>
int ft_putchar(char c)
{
write(1, &c, 1);
return (0);
}