view libcommon/cmdtab.h @ 24:47a491a16de3

utils/Makefile: use ${LIBUTIL} instead of ${LIBS}
author Mychaela Falconia <falcon@freecalypso.org>
date Mon, 15 Mar 2021 08:43:08 +0000
parents b7ee2e85686b
children
line wrap: on
line source

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