1 2 3 4 5 6 7 8 9 10 11 12 13 |
/* * The crc32 functions and data was originally written by Spencer * Garrett <srg@quick.com> and was gleaned from the PostgreSQL source * tree via the files contrib/ltree/crc32.[ch] and from FreeBSD at * src/usr.bin/cksum/crc32.c. */ #ifndef DRIZZLED_CRC32_H #define DRIZZLED_CRC32_H uint32_t hash_crc32(const char *key, size_t key_length); #endif /* DRIZZLED_CRC32_H */ |