Untitled


SUBMITTED BY: Guest

DATE: Nov. 29, 2013, 6:24 p.m.

FORMAT: Text only

SIZE: 264 Bytes

HITS: 794

  1. #include "my_ls.h"
  2. void hide(struct dirent *entry)
  3. {
  4. char *str;
  5. str = entry->d_name;
  6. if (str[0] != '.')
  7. {
  8. my_putstr(str);
  9. my_putchar(' ');
  10. my_putchar(' ');
  11. }
  12. }

comments powered by Disqus