view target-utils/include/cmdtab.h @ 108:3b9cc76f2073

target-utils/Makefile: make clean: support for subset packaging
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 13 Sep 2013 17:00:09 +0000
parents f4fc449a64ea
children
line wrap: on
line source

/* this structure is used for interactive command dispatch */

struct cmdtab {
	char	*cmd;
	void	(*func)();
};