| 38 | } |
| 39 | |
| 40 | static const char * |
| 41 | get_next_token(const char *s) |
| 42 | { |
| 43 | unsigned int i; |
| 44 | i = get_token_len(s); |
| 45 | if (s[i] == '#') |
| 46 | return s+i+1; |
| 47 | return NULL; |
| 48 | } |
| 49 | |
| 50 | int |
| 51 | cmdline_parse_string(cmdline_parse_token_hdr_t *tk, const char *buf, void *res, |
no test coverage detected