ft_putchar.c 88 B

12345678
  1. #include "ft_printf.h"
  2. void ft_putchar(char c, int *i)
  3. {
  4. write(1, &c, 1);
  5. *i += 1;
  6. }