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