add reveng-1.30

new command menu:
crc help
crc calc
crc calc -h for help on command set
This commit is contained in:
marshmellow42 2015-06-06 01:09:54 -04:00
commit fe81b47811
14 changed files with 3685 additions and 6 deletions

16
client/cmdcrc.h Normal file
View file

@ -0,0 +1,16 @@
//-----------------------------------------------------------------------------
// 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);
int CmdCrcCalc(const char *Cmd);
#endif