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=4ce4e8334fff66b5455d0c419c55e3e6cb8a1bc3;hb=HEAD;hpb=a3e400f4aca554102ee4c84082dcf8f7244ff6d4 diff --git a/include/yaz/yaz-iconv.h b/include/yaz/yaz-iconv.h index 4ce4e83..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,16 +51,15 @@ 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);