X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fkcompare.c;h=08a895b74fb4d6e0d8b0f487955a8b8039bfd7f1;hb=4761773f2ff08474c71cc3f44cae1642b45834c1;hp=82e949118d5118337a47129cfadc0036f10e5fd7;hpb=05259bf944ff61befc9bee89b7377bf365b25099;p=idzebra-moved-to-github.git diff --git a/index/kcompare.c b/index/kcompare.c index 82e9491..08a895b 100644 --- a/index/kcompare.c +++ b/index/kcompare.c @@ -1,4 +1,4 @@ -/* $Id: kcompare.c,v 1.44 2004-06-01 12:56:38 adam Exp $ +/* $Id: kcompare.c,v 1.45 2004-06-02 12:29:03 adam Exp $ Copyright (C) 1995,1996,1997,1998,1999,2000,2001,2002,2003,2004 Index Data Aps @@ -136,7 +136,7 @@ static void iscz1_code_stop (int mode, void *p) } #if INT_CODEC_NEW -CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) +static CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) { unsigned char *bp = (unsigned char*) *dst; @@ -149,7 +149,7 @@ CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) *dst = (char *) bp; } -CODEC_INLINE int iscz1_decode_int (unsigned char **src) +static CODEC_INLINE int iscz1_decode_int (unsigned char **src) { unsigned d = 0; unsigned char c; @@ -166,7 +166,7 @@ CODEC_INLINE int iscz1_decode_int (unsigned char **src) #else /* ! INT_CODEC_NEW */ -CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) +static CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) { unsigned char *bp = (unsigned char*) *dst; @@ -193,7 +193,7 @@ CODEC_INLINE void iscz1_encode_int (unsigned d, char **dst) *dst = (char *) bp; } -CODEC_INLINE int iscz1_decode_int (unsigned char **src) +static CODEC_INLINE int iscz1_decode_int (unsigned char **src) { unsigned c = *(*src)++; switch (c & 192)