]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdparser.h
/client/Makefile: Output object files to the obj subdir.
[proxmark3-svn] / client / cmdparser.h
... / ...
CommitLineData
1#ifndef CMDPARSER_H__
2#define CMDPARSER_H__
3
4typedef struct command_s
5{
6 const char * Name;
7 int (*Parse)(const char *Cmd);
8 int Offline;
9 const char * Help;
10} command_t;
11
12// command_t array are expected to be NULL terminated
13
14// Print help for each command in the command array
15void CmdsHelp(const command_t Commands[]);
16// Parse a command line
17void CmdsParse(const command_t Commands[], const char *Cmd);
18
19#endif
Impressum, Datenschutz