FreeCalypso > hg > freecalypso-sw
view 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 |
line wrap: on
line source
/* * fc-fsio command dispatch table */ #include "cmdtab.h" extern int cmd_exec(); extern int cmd_exit(); struct cmdtab cmdtab[] = { {"exec", 1, 1, cmd_exec}, {"exit", 0, 0, cmd_exit}, {0, 0, 0, 0} };