| 3354 | } |
| 3355 | |
| 3356 | static void |
| 3357 | ng_dumpitems(void) |
| 3358 | { |
| 3359 | item_p item; |
| 3360 | int i = 1; |
| 3361 | TAILQ_FOREACH(item, &ng_itemlist, all) { |
| 3362 | printf("[%d] ", i++); |
| 3363 | dumpitem(item, NULL, 0); |
| 3364 | } |
| 3365 | } |
| 3366 | |
| 3367 | static void |
| 3368 | ng_dumpnodes(void) |
no test coverage detected