view target-utils/include/cmdtab.h @ 873:3be5a1b4c91a

rvinterf/Makefile: asyncshell added
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sat, 30 May 2015 06:45:21 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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