Remove leftover code in deconstruct_distribute_oj_quals().
[pgsql.git] / contrib / ltree / crc32.h
blob958812214df7da063d4a41f45ead9fbd0ea6f424
1 #ifndef _CRC32_H
2 #define _CRC32_H
4 /* contrib/ltree/crc32.h */
6 /* Returns crc32 of data block */
7 extern unsigned int ltree_crc32_sz(const char *buf, int size);
9 /* Returns crc32 of null-terminated string */
10 #define crc32(buf) ltree_crc32_sz((buf),strlen(buf))
12 #endif