mirror of
https://github.com/Ladebeze66/printf.git
synced 2025-12-15 13:46:49 +01:00
20 lines
980 B
C
Executable File
20 lines
980 B
C
Executable File
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* ft_putchar_pf.c :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: fgras-ca <marvin@42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2023/03/17 17:54:21 by fgras-ca #+# #+# */
|
|
/* Updated: 2023/03/18 17:01:04 by fgras-ca ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "../ft_printf.h"
|
|
|
|
int ft_putchar_pf(char c)
|
|
{
|
|
write(1, &c, 1);
|
|
return (1);
|
|
}
|