Initial Commit.

This commit is contained in:
2013-05-24 00:49:29 +02:00
commit aeb408cfb1
14 changed files with 1286 additions and 0 deletions

9
crc.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _CRC_
#define _CRC_
#include <stdio.h>
unsigned long CRC_Buffer(unsigned char *buffer,int len,unsigned long crc);
unsigned long CRC_File(FILE *file);
#endif