Archived
1
0
This repository has been archived on 2024-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
pipex/libft/print/printf/ft_putchar.c

20 lines
978 B
C
Raw Normal View History

2024-04-11 14:02:42 +02:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 10:49:00 by adjoly #+# #+# */
/* Updated: 2024/03/29 12:13:52 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
#include "../../libft.h"
int ft_putchar_p(char c)
{
write(1, &c, 1);
return (1);
}