projects
/
hstore.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Initial revision
[hstore.git]
/
crc32.h
1
#ifndef _CRC32_H
2
#define _CRC32_H
3
4
/* Returns crc32 of data block */
5
extern unsigned int crc32_sz(char *buf, int size);
6
7
/* Returns crc32 of null-terminated string */
8
#define crc32(buf) crc32_sz((buf),strlen(buf))
9
10
#endif