diff options
author | Tor Andersson <tor@ghostscript.com> | 2010-07-17 12:30:22 +0000 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2010-07-17 12:30:22 +0000 |
commit | f23227839ea5afeed361611dcaf01784b2f791e3 (patch) | |
tree | 30870ba1fc7e574ab2e14545caa9d9f03f97ef58 /fitz/base_hash.c | |
parent | 5de6910dd12025185e15fb483d5047c399212423 (diff) | |
download | mupdf-f23227839ea5afeed361611dcaf01784b2f791e3.tar.xz |
Minor edits of multi-line comments.
Diffstat (limited to 'fitz/base_hash.c')
-rw-r--r-- | fitz/base_hash.c | 15 |
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; |