Rev 3364 |
Blame |
Compare with Previous |
Last modification |
View Log
| Download
| RSS feed
#ifndef LS_H
#define LS_H
/* Various values that can be returned by ls_scope() */
#define LS_BOGUS 0
#define LS_FILE 1
#define LS_DIR 2
static unsigned int ls_scope(const char *);
static void ls_scan_dir(const char *, DIR *);
static void ls_print_dir(const char *);
static void ls_print_file(const char *);
#endif /* LS_H */