Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | ** EPITECH PROJECT, 2023 | ||
3 | ** my_putstr | ||
4 | ** File description: | ||
5 | ** Prints a string (str) in stdout | ||
6 | */ | ||
7 | |||
8 | #include "my.h" | ||
9 | #include <unistd.h> | ||
10 | |||
11 | 188 | int my_putstr(char const *str) | |
12 | { | ||
13 | 188 | write(1, str, my_strlen(str)); | |
14 | 188 | return 0; | |
15 | } | ||
16 |