X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fsiconv.c;h=6e061d8efe7e81668e7ba126a2524c75b794c8e2;hb=e137416de024bcc37cc35ecae1ce2079f188ac41;hp=36dc4b263f0caea687922b6dc616eb9b25960ebd;hpb=96c6e58f286787106e4a7b3bb3900a36051968d6;p=yaz-moved-to-github.git diff --git a/src/siconv.c b/src/siconv.c index 36dc4b2..6e061d8 100644 --- a/src/siconv.c +++ b/src/siconv.c @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2008 Index Data + * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ /** @@ -27,7 +27,7 @@ #endif #include -#include +#include #include "iconv-p.h" struct yaz_iconv_struct { @@ -78,6 +78,8 @@ static int prepare_decoders(yaz_iconv_t cd, const char *tocode) { if (yaz_marc8_decoder(tocode, &cd->decoder)) return 1; + if (yaz_iso5426_decoder(tocode, &cd->decoder)) + return 1; if (yaz_utf8_decoder(tocode, &cd->decoder)) return 1; if (yaz_ucs4_decoder(tocode, &cd->decoder)) @@ -90,6 +92,8 @@ static int prepare_decoders(yaz_iconv_t cd, const char *tocode) return 1; if (yaz_wchar_decoder(tocode, &cd->decoder)) return 1; + if (yaz_danmarc_decoder(tocode, &cd->decoder)) + return 1; return 0; } @@ -304,7 +308,9 @@ void yaz_iconv_set_errno(yaz_iconv_t cd, int no) /* * Local variables: * c-basic-offset: 4 + * c-file-style: "Stroustrup" * indent-tabs-mode: nil * End: * vim: shiftwidth=4 tabstop=8 expandtab */ +