blob: 357131d2d001bf8facd0fe770c84976b7c3dd867 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Seccomp Library hash code
*
* See hash.c for information on the implementation.
*
*/
#ifndef _HASH_H
#define _HASH_H
#include <inttypes.h>
uint32_t hash(const void *key, size_t length);
#endif
|