view target-utils/include/cmdtab.h @ 650:a432bcc79039

gsm-fw/ccd: Makefile created, all core library modules compile!
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 21 Sep 2014 00:59:02 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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