File: mhash_crc32.h

package info (click to toggle)
mhash 0.6.1-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 900 kB
  • ctags: 347
  • sloc: sh: 7,423; ansic: 5,060; makefile: 100
file content (12 lines) | stat: -rw-r--r-- 257 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef MHASH_CRC32_H
#define MHASH_CRC32_H

#include "libdefs.h"

void clear_crc32(word32 * crc);
void *get_crc32(const word32 * crc);
void crc32(word32 * crc, const void *, int);
void crc32b(word32 * crc, const void *, int);
void crc32bgen(void);

#endif