Changes in uspace/app/sbi/src/input.h [b7fd2a0:9d58539] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/input.h
rb7fd2a0 r9d58539 32 32 #include "mytypes.h" 33 33 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);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); 37 37 38 errno_t input_get_line(input_t *input, char **line);38 int 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.