1
0
libft_new/print/ft_putchar.c

19 lines
961 B
C
Raw Normal View History

2023-11-18 10:54:40 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
2024-02-04 15:11:02 +01:00
/* By: adjoly <adjoly@student.42angouleme.fr> +#+ +:+ +#+ */
2023-11-18 10:54:40 +01:00
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 10:49:00 by adjoly #+# #+# */
2024-02-04 15:11:02 +01:00
/* Updated: 2024/02/04 15:00:50 by adjoly ### ########.fr */
2023-11-18 10:54:40 +01:00
/* */
/* ************************************************************************** */
2024-02-04 15:11:02 +01:00
#include "../libft.h"
2023-11-18 10:54:40 +01:00
void ft_putchar(char c)
{
2024-02-04 15:11:02 +01:00
write(1, &c, 1);
2023-11-18 10:54:40 +01:00
}