/_learning/_c/my_putstr.c
https://bitbucket.org/lohdaar/_ascend · C · 11 lines · 10 code · 1 blank · 0 comment · 2 complexity · ff48348007b59cd9fde950248c6acf12 MD5 · raw file
- #include <unistd.h>
- int my_putstr (char *str) {
- int i = 0;
- while (str[i] != '\0') {
- my_putchar(str[i]);
- i = i + 1;
- }
- my_putchar('\n');
- return 0;
- }