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

20 lines
974 B
C
Raw Normal View History

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