Cleanup armsrc/string.c and string.h (#964)
[legacy-proxmark3.git] / client / cmdparser.h
blobcd4d1625736ff796932d9ae7ed2788fa6f4026ac
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
3 //
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
6 // the license.
7 //-----------------------------------------------------------------------------
8 // Command parser
9 //-----------------------------------------------------------------------------
11 #ifndef CMDPARSER_H__
12 #define CMDPARSER_H__
14 typedef struct command_s
16 const char * Name;
17 int (*Parse)(const char *Cmd);
18 int Offline;
19 const char * Help;
20 } command_t;
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);
30 #endif