X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2Fyaz-iconv.h;h=9f08a41dd0b01e49168c0e972e7e1591b465e8f2;hb=d654b817f2bdb80102dd663d78f31ab3eea4f6bd;hp=4c763f7386ad6a7246943e883fc2c210c05b75ed;hpb=0c46d2e66bdeea1600e700124a81a5d0a65d349e;p=yaz-moved-to-github.git diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index 4c763f7..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-2013 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,21 +51,20 @@ 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);