| 1469 | } |
| 1470 | |
| 1471 | char * poptGetOptArg(poptContext con) |
| 1472 | { |
| 1473 | char * ret = NULL; |
| 1474 | if (con) { |
| 1475 | ret = con->os->nextArg; |
| 1476 | con->os->nextArg = NULL; |
| 1477 | } |
| 1478 | return ret; |
| 1479 | } |
| 1480 | |
| 1481 | const char * poptGetArg(poptContext con) |
| 1482 | { |
no outgoing calls