Subversion Repositories HelenOS

Rev

Rev 4668 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4668 Rev 4688
Line 4... Line 4...
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(const char *, const char *);
10
static void ls_print(const char *, const char *);
13
 
11
 
14
#endif /* LS_H */
12
#endif /* LS_H */
15
 
13