OSDN Git Service

8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef list
[pg-rex/syncrep.git] / contrib / hstore / crc32.h
1 /*
2  * $PostgreSQL: pgsql/contrib/hstore/crc32.h,v 1.3 2009/06/11 14:48:51 momjian Exp $
3  */
4 #ifndef _CRC32_H
5 #define _CRC32_H
6
7 /* Returns crc32 of data block */
8 extern unsigned int crc32_sz(char *buf, int size);
9
10 /* Returns crc32 of null-terminated string */
11 #define crc32(buf) crc32_sz((buf),strlen(buf))
12
13 #endif