ft_putstr.c 177 B

123456789101112131415
  1. #include "ft_printf.h"
  2. void ft_putstr(char *s, int *i)
  3. {
  4. int count;
  5. count = 0;
  6. if (!s)
  7. s = "(null)\0";
  8. while (s[count])
  9. count++;
  10. write(1, s, count);
  11. *i += count;
  12. }