summaryrefslogtreecommitdiffstats
path: root/minzip
diff options
context:
space:
mode:
authorTao Bao <tbao@google.com>2015-07-14 22:26:45 +0200
committerAndroid Git Automerger <android-git-automerger@android.com>2015-07-14 22:26:45 +0200
commit4824827340cc76927f8b24d000638624b15021ac (patch)
tree57d13940b2ca1bef9834f236323079dd1fbad7d5 /minzip
parentam 90c75b0b: Change init sequence to support file level encryption (diff)
parentam 0bacbfd0: Merge "recovery: Switch applypatch/ and updater/ to cpp." (diff)
downloadandroid_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.gz
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.bz2
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.lz
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.xz
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.tar.zst
android_bootable_recovery-4824827340cc76927f8b24d000638624b15021ac.zip
Diffstat (limited to '')
-rw-r--r--minzip/Hash.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/minzip/Hash.h b/minzip/Hash.h
index 8194537f3..e83eac414 100644
--- a/minzip/Hash.h
+++ b/minzip/Hash.h
@@ -15,6 +15,10 @@
#include <stdbool.h>
#include <assert.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/* compute the hash of an item with a specific type */
typedef unsigned int (*HashCompute)(const void* item);
@@ -183,4 +187,8 @@ typedef unsigned int (*HashCalcFunc)(const void* item);
void mzHashTableProbeCount(HashTable* pHashTable, HashCalcFunc calcFunc,
HashCompareFunc cmpFunc);
+#ifdef __cplusplus
+}
+#endif
+
#endif /*_MINZIP_HASH*/