* Return the name of the node type corresponding to the cookie */
| 305 | * Return the name of the node type corresponding to the cookie |
| 306 | */ |
| 307 | static const char * |
| 308 | NgCookie(int cookie) |
| 309 | { |
| 310 | int k; |
| 311 | |
| 312 | for (k = 0; cookies[k].cookie != 0; k++) { |
| 313 | if (cookies[k].cookie == cookie) |
| 314 | return cookies[k].type; |
| 315 | } |
| 316 | return "??"; |
| 317 | } |
| 318 | |
| 319 | /* |
| 320 | * Dump bytes in hex |