Changeset ba63912 in mainline for uspace/app/bdsh/cmds/modules/ls/ls.h
- Timestamp:
- 2011-04-01T13:44:30Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2859445
- Parents:
- a30e435
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.h
ra30e435 rba63912 2 2 #define LS_H 3 3 4 /* Various values that can be returned by ls_scope() */5 #define LS_BOGUS 06 #define LS_FILE 17 #define LS_DIR 28 9 static void ls_scan_dir(const char *, DIR *, int);10 static void ls_print(const char *, const char *);11 12 /** Structure to represent a directory entry.13 *14 * Useful to keep together important informations15 * for sorting directory entries.16 */17 struct dir_elem_t {18 char * name;19 int isdir;20 };21 4 22 5 #endif /* LS_H */
Note:
See TracChangeset
for help on using the changeset viewer.