Add manvolnum, so that man pages are generated.
[PostgreSQL.git] / contrib / hstore / crc32.h
blobbe5375969dca61b1250f7bef176fe39670f50f6f
1 /*
2 * $PostgreSQL$
3 */
4 #ifndef _CRC32_H
5 #define _CRC32_H
7 /* Returns crc32 of data block */
8 extern unsigned int crc32_sz(char *buf, int size);
10 /* Returns crc32 of null-terminated string */
11 #define crc32(buf) crc32_sz((buf),strlen(buf))
13 #endif