diff options
author | Tor Andersson <tor.andersson@artifex.com> | 2015-11-09 14:17:00 +0100 |
---|---|---|
committer | Tor Andersson <tor.andersson@artifex.com> | 2015-12-11 12:11:31 +0100 |
commit | c22e6a6dc2bf6acbac955bd5fbdd896329dfd725 (patch) | |
tree | d9d84d3a6a74ed74c9d470b532097769545e8dc6 /source/fitz/hash.c | |
parent | 95b928431f233052e4bbbd1b2bf9fc705657b5a7 (diff) | |
download | mupdf-c22e6a6dc2bf6acbac955bd5fbdd896329dfd725.tar.xz |
Use fz_output instead of FILE* for most of our output needs.
Use fz_output in debug printing functions.
Use fz_output in pdfshow.
Use fz_output in fz_trace_device instead of stdout.
Use fz_output in pdf-write.c.
Rename fz_new_output_to_filename to fz_new_output_with_path.
Add seek and tell to fz_output.
Remove unused functions like fz_fprintf.
Fix typo in pdf_print_obj.
Diffstat (limited to 'source/fitz/hash.c')
-rw-r--r-- | source/fitz/hash.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/source/fitz/hash.c b/source/fitz/hash.c index f80e79b3..6c4d9a5e 100644 --- a/source/fitz/hash.c +++ b/source/fitz/hash.c @@ -324,34 +324,32 @@ fz_hash_remove_fast(fz_context *ctx, fz_hash_table *table, const void *key, unsi do_removal(ctx, table, key, pos); } -#ifndef NDEBUG void -fz_print_hash(fz_context *ctx, FILE *out, fz_hash_table *table) +fz_print_hash(fz_context *ctx, fz_output *out, fz_hash_table *table) { fz_print_hash_details(ctx, out, table, NULL); } void -fz_print_hash_details(fz_context *ctx, FILE *out, fz_hash_table *table, void (*details)(FILE *,void*)) +fz_print_hash_details(fz_context *ctx, fz_output *out, fz_hash_table *table, void (*details)(fz_context*,fz_output*,void*)) { int i, k; - fprintf(out, "cache load %d / %d\n", table->load, table->size); + fz_printf(ctx, out, "cache load %d / %d\n", table->load, table->size); for (i = 0; i < table->size; i++) { if (!table->ents[i].val) - fprintf(out, "table % 4d: empty\n", i); + fz_printf(ctx, out, "table % 4d: empty\n", i); else { - fprintf(out, "table % 4d: key=", i); + fz_printf(ctx, out, "table % 4d: key=", i); for (k = 0; k < MAX_KEY_LEN; k++) - fprintf(out, "%02x", ((char*)table->ents[i].key)[k]); + fz_printf(ctx, out, "%02x", ((char*)table->ents[i].key)[k]); if (details) - details(out, table->ents[i].val); + details(ctx, out, table->ents[i].val); else - fprintf(out, " val=$%p\n", table->ents[i].val); + fz_printf(ctx, out, " val=$%p\n", table->ents[i].val); } } } -#endif |