Token generator and output processing callback (cmdline API). */
| 13439 | |
| 13440 | /** Token generator and output processing callback (cmdline API). */ |
| 13441 | static void |
| 13442 | cmd_set_raw_cb(void *arg0, struct cmdline *cl, void *arg2) |
| 13443 | { |
| 13444 | if (cl == NULL) |
| 13445 | cmd_set_raw_tok(arg0, arg2); |
| 13446 | else |
| 13447 | cmd_set_raw_parsed(arg0); |
| 13448 | } |
| 13449 | |
| 13450 | /** Global parser instance (cmdline API). */ |
| 13451 | cmdline_parse_inst_t cmd_set_raw = { |
nothing calls this directly
no test coverage detected