Subversion Repositories HelenOS

Rev

Rev 4153 | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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