comparison libcommon/cmdtab.h @ 14:b7ee2e85686b

command dispatch and scripting factored out into libcommon
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 14 Mar 2021 07:34:35 +0000
parents simtool/dispatch.c@ddd767f6e15b
children
comparison
equal deleted inserted replaced
13:7c26eac6ab00 14:b7ee2e85686b
1 struct cmdtab {
2 char *cmd;
3 int minargs;
4 int maxargs;
5 int allow_redir;
6 int (*func)();
7 };