summaryrefslogtreecommitdiffstats
path: root/libopkg/hash_table.h
diff options
context:
space:
mode:
authorCarsten Schoenert <c.schoenert@gmail.com>2013-11-29 14:19:14 (EST)
committer Paul Barker <paul@paulbarker.me.uk>2013-12-17 16:00:36 (EST)
commitfed9b245150a7faa630f7615302c472b7c68ff3e (patch)
tree1dfc15f3fc9f10b5db423ff9644ac25882d2f8db /libopkg/hash_table.h
parent8614cc4cac82328d76ae725c823d7d289137a3a1 (diff)
libopkg: ensure symbol name mangling for C++
Users who use C++ code for theirs application have always to include external C functions with a 'extern "C" { }' assignment. We can take that need from the user by putting thees assignments into the public header files. Signed-off-by: Carsten Schoenert <c.schoenert@gmail.com> Signed-off-by: Paul Barker <paul@paulbarker.me.uk>
Diffstat (limited to 'libopkg/hash_table.h')
-rw-r--r--libopkg/hash_table.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/libopkg/hash_table.h b/libopkg/hash_table.h
index 472b3e2..6113523 100644
--- a/libopkg/hash_table.h
+++ b/libopkg/hash_table.h
@@ -18,6 +18,10 @@
#ifndef _HASH_TABLE_H_
#define _HASH_TABLE_H_
+#ifdef __cplusplus
+extern "C" {
+#endif
+
typedef struct hash_entry hash_entry_t;
typedef struct hash_table hash_table_t;
@@ -48,4 +52,8 @@ int hash_table_insert(hash_table_t *hash, const char *key, void *value);
int hash_table_remove(hash_table_t *has, const char *key);
void hash_table_foreach(hash_table_t *hash, void (*f)(const char *key, void *entry, void *data), void *data);
+#ifdef __cplusplus
+}
+#endif
+
#endif /* _HASH_TABLE_H_ */