mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 09:59:45 +08:00
16 lines
595 B
C
16 lines
595 B
C
|
//-----------------------------------------------------------------------------
|
||
|
// Copyright (C) 2015 iceman <iceman at iuse.se>
|
||
|
//
|
||
|
// 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.
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// CRC Calculations from the software reveng commands
|
||
|
//-----------------------------------------------------------------------------
|
||
|
|
||
|
#ifndef CMDCRC_H__
|
||
|
#define CMDCRC_H__
|
||
|
|
||
|
int CmdCrc(const char *Cmd);
|
||
|
#endif
|