Changes in uspace/app/bdsh/cmds/modules/ls/ls.h [5b3cf90:e3a3e3ad] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.h
r5b3cf90 re3a3e3ad 7 7 #define LS_DIR 2 8 8 9 static void ls_scan_dir(const char *, DIR * );9 static void ls_scan_dir(const char *, DIR *, int); 10 10 static void ls_print(const char *, const char *); 11 12 /** Structure to represent a directory entry. 13 * 14 * Useful to keep together important informations 15 * for sorting directory entries. 16 */ 17 struct dir_elem_t { 18 char * name; 19 int isdir; 20 }; 11 21 12 22 #endif /* LS_H */
Note:
See TracChangeset
for help on using the changeset viewer.