initial commit

This commit is contained in:
U-marc-win4\marc 2014-04-24 16:49:18 +02:00
commit 6a94f708e8
122 changed files with 60195 additions and 0 deletions

8
crc32.h Normal file
View file

@ -0,0 +1,8 @@
#ifndef CRC32_H
#define CRC32_H
#include <sys/types.h>
unsigned int crc32(const void *buf, unsigned int size);
#endif