Changeset a27e370 in mainline for uspace/app/bdsh/cmds/modules/ls/ls.h
- Timestamp:
- 2018-12-08T13:45:38Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade
- Children:
- 0296ee1
- Parents:
- 87ba3ceb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/ls/ls.h
r87ba3ceb ra27e370 8 8 #define LS_FILE 1 9 9 #define LS_DIR 2 10 11 typedef struct {12 /* Options set at runtime. */13 unsigned int recursive;14 unsigned int sort;15 16 bool single_column;17 bool well_formatted;18 } ls_job_t;19 10 20 11 /** Structure to represent a directory entry. … … 28 19 }; 29 20 21 typedef struct { 22 /* Options set at runtime. */ 23 unsigned int recursive; 24 unsigned int sort; 25 26 bool single_column; 27 bool well_formatted; 28 29 void (*printer)(struct dir_elem_t *); 30 } ls_job_t; 31 30 32 #endif
Note:
See TracChangeset
for help on using the changeset viewer.