X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=include%2Fyaz%2Fyaz-iconv.h;h=9f08a41dd0b01e49168c0e972e7e1591b465e8f2;hp=08b09763f9c65cb951bcda09d5cc321c90ded21a;hb=30af0a1ebbea75c3e757eb03d3f988c61fce8511;hpb=77c5a4fca8b516fd39b8ba213daed17a465a6b2a diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index 08b0976..9f08a41 100644 --- a/include/yaz/yaz-iconv.h +++ b/include/yaz/yaz-iconv.h @@ -1,5 +1,5 @@ /* This file is part of the YAZ toolkit. - * Copyright (C) 1995-2012 Index Data. + * Copyright (C) Index Data. * All rights reserved. * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: @@ -51,26 +51,25 @@ typedef struct yaz_iconv_struct *yaz_iconv_t; #define YAZ_ICONV_EINVAL 4 /** \brief just like iconv_open(3) */ -YAZ_EXPORT yaz_iconv_t yaz_iconv_open (const char *tocode, - const char *fromcode); +YAZ_EXPORT yaz_iconv_t yaz_iconv_open(const char *tocode, const char *fromcode); /** \brief just like iconv(3) */ -YAZ_EXPORT size_t yaz_iconv (yaz_iconv_t cd, char **inbuf, size_t *inbytesleft, - char **outbuf, size_t *outbytesleft); +YAZ_EXPORT size_t yaz_iconv(yaz_iconv_t cd, char **inbuf, size_t *inbytesleft, + char **outbuf, size_t *outbytesleft); /** \brief returns last error - like errno for iconv(3) */ -YAZ_EXPORT int yaz_iconv_error (yaz_iconv_t cd); +YAZ_EXPORT int yaz_iconv_error(yaz_iconv_t cd); /** \brief just like iconv_close(3) */ -YAZ_EXPORT int yaz_iconv_close (yaz_iconv_t cd); +YAZ_EXPORT int yaz_iconv_close(yaz_iconv_t cd); /** \brief tests whether conversion is handled by YAZ' iconv or system iconv */ YAZ_EXPORT int yaz_iconv_isbuiltin(yaz_iconv_t cd); -YAZ_EXPORT unsigned long yaz_read_UTF8_char(unsigned char *inp, +YAZ_EXPORT unsigned long yaz_read_UTF8_char(const unsigned char *inp, size_t inbytesleft, size_t *no_read, int *error); -/** \brief encodes UTF-8 sequence +/** \brief encodes UTF-8 sequence \param x the UNICODE value \param outbuf output buffer pointer, updated if conversion is successful \param outbytesleft length of buffer, updated if conversino is successful