view target-utils/include/cmdtab.h @ 78:e3d40f49d8c4

buzplayer timer implementation finished
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 27 Oct 2016 04:04:38 +0000
parents e7502631a0f9
children
line wrap: on
line source

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

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