view target-utils/include/cmdtab.h @ 135:e4257294102b

fc-xram: execvp of secondary program implemented
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 03 Nov 2013 00:14:40 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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