Move code to the "src" subdirectory

This commit is contained in:
2014-12-03 00:07:30 +01:00
parent 552552a539
commit 2c581b262c
12 changed files with 21 additions and 16 deletions

9
src/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