Subversion Repositories HelenOS

Rev

Rev 3277 | Rev 3326 | Go to most recent revision | 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
 
4
/* Prototypes for the ls command, excluding entry points */
5
 
3293 post 6
#define LS_BOGUS 0
7
#define LS_FILE  1
8
#define LS_DIR   2
3277 post 9
 
3293 post 10
extern unsigned int ls_scope(const char *);
11
extern void ls_print(const char *);
12
 
3277 post 13
#endif /* LS_H */
14