42_Philosopher/utils/putstr.c

15 lines
146 B
C
Raw Normal View History

2023-04-25 10:30:21 -04:00
#include "utils.h"
#include <stddef.h>
void ft_putstr(char *str)
{
size_t i;
i = 0;
while (str[i] != 0)
{
ft_putchar(str[i]);
i++;
}
}