comparison target-utils/include/cmdtab.h @ 13:f4fc449a64ea

target-utils libcommon infrastructure for interactive commands
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Fri, 03 May 2013 06:42:03 +0000
parents
children
comparison
equal deleted inserted replaced
12:165040ce4929 13:f4fc449a64ea
1 /* this structure is used for interactive command dispatch */
2
3 struct cmdtab {
4 char *cmd;
5 void (*func)();
6 };