/_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

  1. #include <unistd.h>
  2. int my_putstr (char *str) {
  3. int i = 0;
  4. while (str[i] != '\0') {
  5. my_putchar(str[i]);
  6. i = i + 1;
  7. }
  8. my_putchar('\n');
  9. return 0;
  10. }