Improve sublink pullup code to handle ANY/EXISTS sublinks that are at top
[PostgreSQL.git] / contrib / hstore / crc32.h
blobd8c5325e5789816e641db1e4954ca0b227726ec4
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