42-archive/libftasm/src/printing/ft_putchar.c
2016-11-05 10:59:32 +01:00

19 lines
969 B
C

/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jhalford <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2016/11/03 14:57:37 by jhalford #+# #+# */
/* Updated: 2016/11/04 13:11:49 by jhalford ### ########.fr */
/* */
/* ************************************************************************** */
#include "libft.h"
int ft_putchar(int c)
{
write(1, &c, 1);
return (0);
}