| 923 | static struct cmd *cmds = NULL; |
| 924 | |
| 925 | void |
| 926 | cmd_register(struct cmd *p) |
| 927 | { |
| 928 | p->c_next = cmds; |
| 929 | cmds = p; |
| 930 | } |
| 931 | |
| 932 | static const struct cmd * |
| 933 | cmd_lookup(const char *name, int iscreate) |
no outgoing calls
no test coverage detected