]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdparser.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
9 //-----------------------------------------------------------------------------
14 typedef struct command_s
17 int (*Parse
)(const char *Cmd
);
22 // command_t array are expected to be NULL terminated
24 // Print help for each command in the command array
25 void CmdsHelp(const command_t Commands
[]);
26 // Parse a command line
27 int CmdsParse(const command_t Commands
[], const char *Cmd
);
28 void dumpCommandsRecursive(const command_t cmds
[], int markdown
);