void stp_array_destroy(stp_array_t *array) { check_array(array); array_dtor(array); stp_free(array); }
static inline void sp_csv_filter_dtor(sp_csv_filter_t *self) { free(self->input); free(self->output); csv_delete(self->table); array_dtor(&self->expressions); }