Version Final

This commit is contained in:
Hugo Manuel Tamayo Olea
2026-01-11 17:57:21 +01:00
commit 17681f5124
10 changed files with 378 additions and 0 deletions

19
ft_putchar_pf.c Normal file
View File

@@ -0,0 +1,19 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_putchar_pf.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: htamayo- <htamayo-@student.42malaga.c +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2025/12/20 18:45:06 by htamayo- #+# #+# */
/* Updated: 2025/12/20 18:46:04 by htamayo- ### ########.fr */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void ft_putchar_pf(char c, size_t *counter)
{
write(1, &c, 1);
(*counter)++;
}