mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-21 04:50:14 -08:00
0d2624a0cc
and refactoring: move all of hf list code to cmdhflist.c
17 lines
659 B
C
17 lines
659 B
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
// Copyright (C) Merlok - 2017
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// Command: hf mf list. It shows data from arm buffer.
|
|
//-----------------------------------------------------------------------------
|
|
#ifndef CMDHFLIST_H
|
|
#define CMDHFLIST_H
|
|
|
|
extern int CmdHFList(const char *Cmd);
|
|
|
|
#endif // CMDHFLIST_H
|