| 1258 | } |
| 1259 | |
| 1260 | PB_API void pb_delsort(pb_Type *t) { |
| 1261 | if (t->field_sort) { |
| 1262 | free(t->field_sort); |
| 1263 | t->field_sort = NULL; |
| 1264 | } |
| 1265 | } |
| 1266 | |
| 1267 | PB_API void pb_deltype(pb_State *S, pb_Type *t) { |
| 1268 | pb_FieldEntry *nf = NULL; |
no outgoing calls
no test coverage detected