]> granicus.if.org Git - postgresql/blob - contrib/tsearch2/crc32.h
Add CVS tag lines to files that were lacking them.
[postgresql] / contrib / tsearch2 / crc32.h
1 #ifndef _CRC32_H
2 #define _CRC32_H
3
4 /* $PostgreSQL: pgsql/contrib/tsearch2/crc32.h,v 1.2 2006/03/11 04:38:30 momjian Exp $ */
5
6 /* Returns crc32 of data block */
7 extern unsigned int crc32_sz(char *buf, int size);
8
9 /* Returns crc32 of null-terminated string */
10 #define crc32(buf) crc32_sz((buf),strlen(buf))
11
12 #endif