42-archive/libft/srcs/printing/ft_putchar.c

23 lines
1 KiB
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_fd(int c, int fd)
{
return (write(fd, &c, 1));
}
int ft_putchar(int c)
{
return (write(1, &c, 1));
}