| 18489 | } |
| 18490 | |
| 18491 | void gmt_free_array (struct GMT_CTRL *GMT, struct GMT_ARRAY *T) { |
| 18492 | /* Free anything that was allocated during parsing and creating a 1D array */ |
| 18493 | gmt_M_str_free (T->file); |
| 18494 | gmt_M_str_free (T->list); |
| 18495 | if (T->array) gmt_M_free (GMT, T->array); |
| 18496 | } |
| 18497 | |
| 18498 | bool gmt_no_pstext_input (struct GMTAPI_CTRL *API, char *arg) { |
| 18499 | char *c = NULL; |
no outgoing calls
no test coverage detected