summaryrefslogtreecommitdiff
path: root/include/mupdf/fitz/hash.h
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2016-09-18 01:59:43 +0800
committerSebastian Rasmussen <sebras@gmail.com>2016-09-18 12:46:33 +0800
commit4f79809193250b8f791b2f56afc1bc3a1da24956 (patch)
tree44f5d8aaa2322986c8326bf3a806c7b6f14fa538 /include/mupdf/fitz/hash.h
parentc53182cabd976b952060d1749ecde00148fbd4e6 (diff)
downloadmupdf-4f79809193250b8f791b2f56afc1bc3a1da24956.tar.xz
Make printing empty hash table entries optional.
Diffstat (limited to 'include/mupdf/fitz/hash.h')
-rw-r--r--include/mupdf/fitz/hash.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mupdf/fitz/hash.h b/include/mupdf/fitz/hash.h
index 8d4874d7..4b1d7a05 100644
--- a/include/mupdf/fitz/hash.h
+++ b/include/mupdf/fitz/hash.h
@@ -26,6 +26,6 @@ void *fz_hash_get_key(fz_context *ctx, fz_hash_table *table, int idx);
void *fz_hash_get_val(fz_context *ctx, fz_hash_table *table, int idx);
void fz_print_hash(fz_context *ctx, fz_output *out, fz_hash_table *table);
-void fz_print_hash_details(fz_context *ctx, fz_output *out, fz_hash_table *table, void (*details)(fz_context*, fz_output*, void*));
+void fz_print_hash_details(fz_context *ctx, fz_output *out, fz_hash_table *table, void (*details)(fz_context*, fz_output*, void*), int compact);
#endif