fix little endian vs big endian in the macros... again... but this time correct
[RRG-proxmark3.git] / client / src / cmdtrace.h
blob7444fe62ea43e4eda58f2af36861420c0a576e0e
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 iceman <iceman at iuse.se>
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 // Trace commands
9 //-----------------------------------------------------------------------------
11 #ifndef CMDTRACE_H__
12 #define CMDTRACE_H__
14 #include "common.h"
16 int CmdTrace(const char *Cmd);
17 int CmdTraceList(const char *Cmd);
18 int CmdTraceListAlias(const char *Cmd, const char *alias, const char *protocol);
20 #endif