diff options
Diffstat (limited to 'lib/striconveh.h')
-rw-r--r-- | lib/striconveh.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/lib/striconveh.h b/lib/striconveh.h index 0003db1c1..be5e5001a 100644 --- a/lib/striconveh.h +++ b/lib/striconveh.h @@ -54,7 +54,7 @@ typedef struct set. */ extern int iconveh_open (const char *to_codeset, const char *from_codeset, - iconveh_t *cdp); + iconveh_t *cdp); /* Close a conversion descriptor created by iconveh_open(). Return value: 0 if successful, otherwise -1 and errno set. */ @@ -78,10 +78,10 @@ extern int unchanged if no dynamic memory allocation was necessary. */ extern int mem_cd_iconveh (const char *src, size_t srclen, - const iconveh_t *cd, - enum iconv_ilseq_handler handler, - size_t *offsets, - char **resultp, size_t *lengthp); + const iconveh_t *cd, + enum iconv_ilseq_handler handler, + size_t *offsets, + char **resultp, size_t *lengthp); /* Convert an entire string from one encoding to another, using iconv. The original string is the NUL-terminated string starting at SRC. @@ -94,8 +94,8 @@ extern int successful, otherwise NULL and errno set. */ extern char * str_cd_iconveh (const char *src, - const iconveh_t *cd, - enum iconv_ilseq_handler handler); + const iconveh_t *cd, + enum iconv_ilseq_handler handler); #endif @@ -114,10 +114,10 @@ extern char * unchanged if no dynamic memory allocation was necessary. */ extern int mem_iconveh (const char *src, size_t srclen, - const char *from_codeset, const char *to_codeset, - enum iconv_ilseq_handler handler, - size_t *offsets, - char **resultp, size_t *lengthp); + const char *from_codeset, const char *to_codeset, + enum iconv_ilseq_handler handler, + size_t *offsets, + char **resultp, size_t *lengthp); /* Convert an entire string from one encoding to another, using iconv. The original string is the NUL-terminated string starting at SRC. @@ -128,8 +128,8 @@ extern int successful, otherwise NULL and errno set. */ extern char * str_iconveh (const char *src, - const char *from_codeset, const char *to_codeset, - enum iconv_ilseq_handler handler); + const char *from_codeset, const char *to_codeset, + enum iconv_ilseq_handler handler); #ifdef __cplusplus |