* Convert an ASCII string to binary according to the supplied type descriptor */
| 144 | * Convert an ASCII string to binary according to the supplied type descriptor |
| 145 | */ |
| 146 | int |
| 147 | ng_parse(const struct ng_parse_type *type, |
| 148 | const char *string, int *off, u_char *buf, int *buflen) |
| 149 | { |
| 150 | return INVOKE(type, parse)(type, string, off, buf, buf, buflen); |
| 151 | } |
| 152 | |
| 153 | /* |
| 154 | * Convert binary to an ASCII string according to the supplied type descriptor |
no outgoing calls
no test coverage detected