comparison rvinterf/etmsync/fscmdtab.c @ 276:909f00c15f27

more fc-fsio foundation
author Michael Spacefalcon <msokolov@ivan.Harhan.ORG>
date Sun, 23 Feb 2014 21:31:30 +0000
parents
children f77480d3dd21
comparison
equal deleted inserted replaced
275:cedf09b6b5ac 276:909f00c15f27
1 /*
2 * fc-fsio command dispatch table
3 */
4
5 #include "cmdtab.h"
6
7 extern int cmd_exec();
8 extern int cmd_exit();
9
10 struct cmdtab cmdtab[] = {
11 {"exec", 1, 1, cmd_exec},
12 {"exit", 0, 0, cmd_exit},
13 {0, 0, 0, 0}
14 };