| … | |
… | |
| 60 | result = malloc(sizeof(*result)); |
60 | result = malloc(sizeof(*result)); |
| 61 | *result = default_config; |
61 | *result = default_config; |
| 62 | return result; |
62 | return result; |
| 63 | } |
63 | } |
| 64 | |
64 | |
| 65 | psiconv_config_free(psiconv_config config) |
65 | void psiconv_config_free(psiconv_config config) |
| 66 | { |
66 | { |
| 67 | free(config); |
67 | free(config); |
| 68 | } |
68 | } |
| 69 | |
69 | |
| 70 | void psiconv_config_parse_statement(const char *filename, |
70 | void psiconv_config_parse_statement(const char *filename, |
| … | |
… | |
| 357 | } |
357 | } |
| 358 | |
358 | |
| 359 | psiconv_config_parse_file(filename,config); |
359 | psiconv_config_parse_file(filename,config); |
| 360 | free(filename); |
360 | free(filename); |
| 361 | } |
361 | } |
|
|
362 | free(path); |
| 362 | } |
363 | } |