~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/crc32.h

  • Committer: Brian Aker
  • Date: 2009-09-30 00:48:37 UTC
  • mfrom: (1143.1.1 bug437896)
  • Revision ID: brian@gaz-20090930004837-vrhjzvzg19e0sq0e
Update from Jay.

Show diffs side-by-side

added added

removed removed

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