bglibs
gcrc.h
1 #ifndef GENERIC_CRC__H__
2 #define GENERIC_CRC__H__
3 
4 #include "sysdeps.h"
5 
6 uint16 gcrc16fwd(uint16, const char*, long len, const uint16[256]);
7 uint16 gcrc16rfl(uint16, const char*, long len, const uint16[256]);
8 uint32 gcrc32fwd(uint32, const char*, long len, const uint32[256]);
9 uint32 gcrc32rfl(uint32, const char*, long len, const uint32[256]);
10 uint64 gcrc64fwd(uint64, const char*, long len, const uint64[256]);
11 uint64 gcrc64rfl(uint64, const char*, long len, const uint64[256]);
12 
13 #endif
unsigned len
Definition: str.h:40