summaryrefslogtreecommitdiffstats
path: root/libnetdata/dictionary/dictionary.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--libnetdata/dictionary/dictionary.h (renamed from src/dictionary.h)6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/dictionary.h b/libnetdata/dictionary/dictionary.h
index f028dbb30..61b9bfc61 100644
--- a/src/dictionary.h
+++ b/libnetdata/dictionary/dictionary.h
@@ -1,6 +1,10 @@
+// SPDX-License-Identifier: GPL-3.0-or-later
+
#ifndef NETDATA_DICTIONARY_H
#define NETDATA_DICTIONARY_H 1
+#include "../libnetdata.h"
+
struct dictionary_stats {
unsigned long long inserts;
unsigned long long deletes;
@@ -35,7 +39,7 @@ typedef struct dictionary {
extern DICTIONARY *dictionary_create(uint8_t flags);
extern void dictionary_destroy(DICTIONARY *dict);
-extern void *dictionary_set(DICTIONARY *dict, const char *name, void *value, size_t value_len);
+extern void *dictionary_set(DICTIONARY *dict, const char *name, void *value, size_t value_len) NEVERNULL;
extern void *dictionary_get(DICTIONARY *dict, const char *name);
extern int dictionary_del(DICTIONARY *dict, const char *name);