X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fdict.h;h=2b78d2df3b4871eaa22ae2f23af4123d453026f3;hb=d07818ca27f4e0efc9683148cb5d9891d34b9495;hp=1b86e1f3e0767b551bee7c0e2a5de2895a9ab7e6;hpb=b3a6eba6b48be6df19bce22dbf2bc0068df9cfe8;p=idzebra-moved-to-github.git diff --git a/include/dict.h b/include/dict.h index 1b86e1f..2b78d2d 100644 --- a/include/dict.h +++ b/include/dict.h @@ -4,7 +4,12 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: dict.h,v $ - * Revision 1.17 1995-12-07 11:47:04 adam + * Revision 1.18 1996-02-01 20:41:06 adam + * Bug fix: insert didn't work on 8-bit characters due to unsigned char + * compares in dict_strcmp (strcmp) and signed Dict_char. Dict_char is + * unsigned now. + * + * Revision 1.17 1995/12/07 11:47:04 adam * Default pagesize is 4k instead of 8k. * * Revision 1.16 1995/12/06 14:41:13 adam @@ -67,7 +72,7 @@ #include typedef unsigned Dict_ptr; -typedef char Dict_char; +typedef unsigned char Dict_char; struct Dict_head { char magic_str[8];