Files
FileSync/crc.h
2013-10-15 20:41:26 +02:00

10 lines
170 B
C

#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