summaryrefslogtreecommitdiff
path: root/fitz/base_hash.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
committerTor Andersson <tor@ghostscript.com>2010-07-17 12:30:22 +0000
commitf23227839ea5afeed361611dcaf01784b2f791e3 (patch)
tree30870ba1fc7e574ab2e14545caa9d9f03f97ef58 /fitz/base_hash.c
parent5de6910dd12025185e15fb483d5047c399212423 (diff)
downloadmupdf-f23227839ea5afeed361611dcaf01784b2f791e3.tar.xz
Minor edits of multi-line comments.
Diffstat (limited to 'fitz/base_hash.c')
-rw-r--r--fitz/base_hash.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/fitz/base_hash.c b/fitz/base_hash.c
index b0dd12fc..d4a5133f 100644
--- a/fitz/base_hash.c
+++ b/fitz/base_hash.c
@@ -1,12 +1,13 @@
-/* Simple hashtable with open adressing linear probe.
- * Unlike text book examples, removing entries works
- * correctly in this implementation so it wont start
- * exhibiting bad behaviour if entries are inserted
- * and removed frequently.
- */
-
#include "fitz.h"
+/*
+Simple hashtable with open adressing linear probe.
+Unlike text book examples, removing entries works
+correctly in this implementation, so it wont start
+exhibiting bad behaviour if entries are inserted
+and removed frequently.
+*/
+
enum { MAXKEYLEN = 48 };
typedef struct fz_hashentry_s fz_hashentry;