view libcommon/cmdtab.h @ 88:49b7e02787c1

simtool/readef.c: rm unused local variable
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 11 Apr 2021 04:01:21 +0000
parents b7ee2e85686b
children
line wrap: on
line source

struct cmdtab {
	char *cmd;
	int minargs;
	int maxargs;
	int allow_redir;
	int (*func)();
};