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.
ft_printf/ft_putchar.c

20 lines
974 B
C
Raw Permalink Normal View History

2023-11-20 11:56:11 +01:00
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/18 10:49:00 by adjoly #+# #+# */
2023-11-22 13:34:16 +01:00
/* Updated: 2023/11/22 11:07:22 by adjoly ### ########.fr */
2023-11-20 11:56:11 +01:00
/* */
/* ************************************************************************** */
#include "ft_printf.h"
2023-11-20 11:56:11 +01:00
int ft_putchar(char c)
{
write(1, &c, 1);
return (1);
}