Subversion Repositories HelenOS

Rev

Rev 4055 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #ifndef LS_H
  2. #define LS_H
  3.  
  4. /* Various values that can be returned by ls_scope() */
  5. #define LS_BOGUS 0
  6. #define LS_FILE  1
  7. #define LS_DIR   2
  8.  
  9.  
  10. static unsigned int ls_scope(const char *);
  11. static void ls_scan_dir(const char *, DIR *);
  12. static void ls_print(const char *, const char *);
  13.  
  14. #endif /* LS_H */
  15.  
  16.