diff options
Diffstat (limited to 'src/hash.h')
-rw-r--r-- | src/hash.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/hash.h b/src/hash.h new file mode 100644 index 0000000..357131d --- /dev/null +++ b/src/hash.h @@ -0,0 +1,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 + |