| 1442 | } |
| 1443 | |
| 1444 | unsigned int statusLength(const ISC_STATUS* const status) throw() |
| 1445 | { |
| 1446 | unsigned int l = 0; |
| 1447 | for(;;) |
| 1448 | { |
| 1449 | if (status[l] == isc_arg_end) |
| 1450 | { |
| 1451 | return l; |
| 1452 | } |
| 1453 | l += nextArg(status[l]); |
| 1454 | } |
| 1455 | } |
| 1456 | |
| 1457 | bool cmpStatus(unsigned int len, const ISC_STATUS* a, const ISC_STATUS* b) throw() |
| 1458 | { |
no test coverage detected