view target-utils/include/cmdtab.h @ 912:f50c71442d50

etmsync: die ID read implemented
author Space Falcon <falcon@ivan.Harhan.ORG>
date Tue, 08 Sep 2015 08:18:42 +0000
parents f4fc449a64ea
children
line wrap: on
line source

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

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