Changeset a30e435 in mainline for uspace/app/bdsh/cmds/modules/ls/ls.h
- Timestamp:
- 2011-04-01T12:00:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ba63912
- Parents:
- 73aec008 (diff), 1e2629f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.h
r73aec008 ra30e435 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.