view target-utils/include/cmdtab.h @ 838:a963ff26848a

gdi/ffs_coat.c: added boilerplate includes just in case
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sat, 25 Apr 2015 19:27:04 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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