| 283 | ************************************************************************/ |
| 284 | |
| 285 | static int |
| 286 | ng_array_parse(const struct ng_parse_type *type, |
| 287 | const char *s, int *off, const u_char *const start, |
| 288 | u_char *const buf, int *buflen) |
| 289 | { |
| 290 | return ng_parse_composite(type, s, off, start, buf, buflen, CT_ARRAY); |
| 291 | } |
| 292 | |
| 293 | static int |
| 294 | ng_array_unparse(const struct ng_parse_type *type, |
no test coverage detected