X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fucs4.c;h=8b677c4323534cf321a4df02504a4fe8e5b78189;hp=3c28b9876f04b83ff14cfb0f0101290b206e60b9;hb=3d6e2f0931ae87fe01e857d4573d946f6cd8e6f1;hpb=96c6e58f286787106e4a7b3bb3900a36051968d6 diff --git a/src/ucs4.c b/src/ucs4.c index 3c28b98..8b677c4 100644 --- a/src/ucs4.c +++ b/src/ucs4.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) Index Data * See the file LICENSE for details. */ /** @@ -14,7 +14,6 @@ #include #include #include -#include #include "iconv-p.h" @@ -23,7 +22,7 @@ static unsigned long read_UCS4(yaz_iconv_t cd, yaz_iconv_decoder_t d, size_t inbytesleft, size_t *no_read) { unsigned long x = 0; - + if (inbytesleft < 4) { yaz_iconv_set_errno(cd, YAZ_ICONV_EINVAL); /* incomplete input */ @@ -42,7 +41,7 @@ static unsigned long read_UCS4LE(yaz_iconv_t cd, yaz_iconv_decoder_t d, size_t inbytesleft, size_t *no_read) { unsigned long x = 0; - + if (inbytesleft < 4) { yaz_iconv_set_errno(cd, YAZ_ICONV_EINVAL); /* incomplete input */ @@ -103,7 +102,7 @@ static size_t write_UCS4LE(yaz_iconv_t cd, yaz_iconv_encoder_t en, yaz_iconv_encoder_t yaz_ucs4_encoder(const char *tocode, yaz_iconv_encoder_t e) - + { if (!yaz_matchstr(tocode, "UCS4")) e->write_handle = write_UCS4; @@ -116,7 +115,7 @@ yaz_iconv_encoder_t yaz_ucs4_encoder(const char *tocode, yaz_iconv_decoder_t yaz_ucs4_decoder(const char *tocode, yaz_iconv_decoder_t d) - + { if (!yaz_matchstr(tocode, "UCS4")) d->read_handle = read_UCS4; @@ -132,7 +131,9 @@ yaz_iconv_decoder_t yaz_ucs4_decoder(const char *tocode, /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +