15 lines
146 B
C
15 lines
146 B
C
|
#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++;
|
||
|
}
|
||
|
}
|