Changeset 5db9084 in mainline for uspace/lib/clui/tinput.h
- Timestamp:
- 2010-04-04T22:01:32Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 73060801
- Parents:
- 59ecd4a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/clui/tinput.h
r59ecd4a r5db9084 64 64 /** Current position in history */ 65 65 int hpos; 66 /** Exit flag*/66 /** @c true if finished with this line (return to caller) */ 67 67 bool done; 68 /** @c true if user requested to abort interactive loop */ 69 bool exit_clui; 68 70 } tinput_t; 69 71 70 72 extern tinput_t *tinput_new(void); 71 73 extern void tinput_destroy(tinput_t *ti); 72 extern char *tinput_read(tinput_t *ti);74 extern int tinput_read(tinput_t *ti, char **str); 73 75 74 76 #endif
Note:
See TracChangeset
for help on using the changeset viewer.