]>
Commit | Line | Data |
---|---|---|
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 | // Data and Graph commands | |
9 | //----------------------------------------------------------------------------- | |
10 | ||
11 | #ifndef CMDANALYSE_H__ | |
12 | #define CMDANALYSE_H__ | |
13 | ||
14 | #include <stdlib.h> //size_t | |
15 | #include <string.h> | |
16 | #include "cmdmain.h" | |
17 | #include "proxmark3.h" | |
18 | #include "ui.h" // PrintAndLog | |
19 | command_t * CmdDataCommands(); | |
20 | ||
21 | int CmdAnalyse(const char *Cmd); | |
22 | int CmdAnalyseLCR(const char *Cmd); | |
23 | int CmdAnalyseDates(const char *Cmd); | |
24 | #endif |