Changes in uspace/app/sbi/src/input.c [074444f:1ebc1a62] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/input.c
r074444f r1ebc1a62 45 45 #define INPUT_BUFFER_SIZE 256 46 46 47 static int input_init_file(input_t *input, c onst char *fname);47 static int input_init_file(input_t *input, char *fname); 48 48 static void input_init_interactive(input_t *input); 49 49 static void input_init_string(input_t *input, const char *str); … … 57 57 * ENOENT when opening file fails. 58 58 */ 59 int input_new_file(input_t **input, c onst char *fname)59 int input_new_file(input_t **input, char *fname) 60 60 { 61 61 *input = malloc(sizeof(input_t)); … … 104 104 * @return EOK on success, ENOENT when opening file fails. 105 105 */ 106 static int input_init_file(input_t *input, c onst char *fname)106 static int input_init_file(input_t *input, char *fname) 107 107 { 108 108 FILE *f;
Note:
See TracChangeset
for help on using the changeset viewer.