| 129 | } |
| 130 | |
| 131 | static void |
| 132 | reset_format_in_config(FormatConfig *format_config) |
| 133 | { |
| 134 | format_config->preserve_blanks = 0; |
| 135 | format_config->null_value = NULL; |
| 136 | format_config->line_delimiter = "\n"; |
| 137 | format_config->line_delimiter_length = strlen(format_config->line_delimiter); |
| 138 | format_config->fldNames = NIL; |
| 139 | format_config->fldSizes = NIL; |
| 140 | format_config->fldIndexes = NIL; |
| 141 | format_config->fldNullsWithBlanks = NIL; |
| 142 | format_config->fields_tot_size = 0; |
| 143 | } |
| 144 | |
| 145 | /* |
| 146 | * load_format_config |
no outgoing calls
no test coverage detected