Rev 3364 | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 3277 | post | 1 | #ifndef LS_H |
| 2 | #define LS_H |
||
| 3 | |||
| 3326 | post | 4 | /* Various values that can be returned by ls_scope() */ |
| 3293 | post | 5 | #define LS_BOGUS 0 |
| 6 | #define LS_FILE 1 |
||
| 7 | #define LS_DIR 2 |
||
| 3277 | post | 8 | |
| 3293 | post | 9 | |
| 3364 | post | 10 | static unsigned int ls_scope(const char *); |
| 11 | static void ls_scan_dir(const char *, DIR *); |
||
| 12 | static void ls_print_dir(const char *); |
||
| 13 | static void ls_print_file(const char *); |
||
| 14 | |||
| 3277 | post | 15 | #endif /* LS_H */ |
| 16 |