| 3326 | } |
| 3327 | |
| 3328 | static void |
| 3329 | ng_dumpitems(void) |
| 3330 | { |
| 3331 | item_p item; |
| 3332 | int i = 1; |
| 3333 | TAILQ_FOREACH(item, &ng_itemlist, all) { |
| 3334 | printf("[%d] ", i++); |
| 3335 | dumpitem(item, NULL, 0); |
| 3336 | } |
| 3337 | } |
| 3338 | |
| 3339 | static void |
| 3340 | ng_dumpnodes(void) |
no test coverage detected