| 342 | } |
| 343 | |
| 344 | static void |
| 345 | freeline (struct line *line) |
| 346 | { |
| 347 | if (line == NULL) |
| 348 | return; |
| 349 | free (line->fields); |
| 350 | line->fields = NULL; |
| 351 | free (line->buf.buffer); |
| 352 | line->buf.buffer = NULL; |
| 353 | } |
| 354 | |
| 355 | /* Return <0 if the join field in LINE1 compares less than the one in LINE2; |
| 356 | >0 if it compares greater; 0 if it compares equal. |
no outgoing calls
no test coverage detected