view target-utils/include/cmdtab.h @ 99:b78db17bfc85

fc-loadtool: flash program-{m0,srec} implemented
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 01 Sep 2013 18:59:48 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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