| 193 | } |
| 194 | |
| 195 | static void cleanOSE(struct optionStackEntry *os) |
| 196 | { |
| 197 | os->nextArg = _free(os->nextArg); |
| 198 | os->argv = _free(os->argv); |
| 199 | os->argb = PBM_FREE(os->argb); |
| 200 | } |
| 201 | |
| 202 | void poptResetContext(poptContext con) |
| 203 | { |
no test coverage detected