Move to kernel style SPDX license identifiers
[lttng-tools.git] / src / common / hashtable / utils.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 David Goulet <david.goulet@polymtl.ca>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#ifndef _LTT_HT_UTILS_H
9#define _LTT_HT_UTILS_H
10
11#include <stdint.h>
12
13unsigned long hash_key_ulong(const void *_key, unsigned long seed);
14unsigned long hash_key_u64(const void *_key, unsigned long seed);
15unsigned long hash_key_str(const void *key, unsigned long seed);
16unsigned long hash_key_two_u64(const void *key, unsigned long seed);
17int hash_match_key_ulong(const void *key1, const void *key2);
18int hash_match_key_u64(const void *key1, const void *key2);
19int hash_match_key_str(const void *key1, const void *key2);
20int hash_match_key_two_u64(const void *key1, const void *key2);
21
22#endif /* _LTT_HT_UTILS_H */
This page took 0.022275 seconds and 4 git commands to generate.