| 184 | }; |
| 185 | |
| 186 | static void |
| 187 | cmd_num_parsed(void *parsed_result, |
| 188 | struct cmdline *cl, |
| 189 | __rte_unused void *data) |
| 190 | { |
| 191 | unsigned result = ((struct cmd_num_result*)parsed_result)->num; |
| 192 | cmdline_printf(cl, "%u\n", result); |
| 193 | } |
| 194 | |
| 195 | cmdline_parse_token_num_t cmd_num_tok = |
| 196 | TOKEN_NUM_INITIALIZER(struct cmd_num_result, num, RTE_UINT32); |
nothing calls this directly
no test coverage detected