14 lines
121 B
C
14 lines
121 B
C
|
#include <unistd.h>
|
||
|
|
||
|
void ft_putstr(char *str)
|
||
|
{
|
||
|
int i;
|
||
|
|
||
|
i = 0;
|
||
|
while (str[i])
|
||
|
{
|
||
|
write(1, &str[i], 1);
|
||
|
i++;
|
||
|
}
|
||
|
}
|