Changeset e3a3e3ad in mainline for uspace/app/bdsh/cmds/modules/ls/ls.h
- Timestamp:
- 2011-03-30T17:24:01Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- beb6b3d
- Parents:
- 99b65d2
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.h
r99b65d2 re3a3e3ad 7 7 #define LS_DIR 2 8 8 9 static void ls_sort_dir(const char *, char **, int); 10 static void ls_scan_dir(const char *, DIR *); 9 static void ls_scan_dir(const char *, DIR *, int); 11 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 }; 12 21 13 22 #endif /* LS_H */
Note:
See TracChangeset
for help on using the changeset viewer.