view target-utils/include/cmdtab.h @ 75:c9768f5fb329

target-utils: pirexplore added to top level Makefile
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 28 Jul 2013 01:30:22 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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