Changeset b7fd2a0 in mainline for uspace/app/sbi/src/input.h
- Timestamp:
- 2018-01-13T03:10:29Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a53ed3a
- Parents:
- 36f0738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/input.h
r36f0738 rb7fd2a0 32 32 #include "mytypes.h" 33 33 34 int input_new_file(input_t **input, const char *fname);35 int input_new_interactive(input_t **input);36 int input_new_string(input_t **input, const char *str);34 errno_t input_new_file(input_t **input, const char *fname); 35 errno_t input_new_interactive(input_t **input); 36 errno_t input_new_string(input_t **input, const char *str); 37 37 38 int input_get_line(input_t *input, char **line);38 errno_t input_get_line(input_t *input, char **line); 39 39 int input_get_line_no(input_t *input); 40 40
Note:
See TracChangeset
for help on using the changeset viewer.