ICONV.H(7) Miscellaneous Information Manual ICONV.H(7)
NAME
iconv.h — codeset
conversion facility
SYNOPSIS
DESCRIPTION
The <iconv.h> header shall define the following type:
- iconv_t
- Identifies the conversion from one codeset to another.
The following shall be declared as functions and may also be defined as macros. Function prototypes shall be provided.
iconv_t iconv_open(const char *, const char *);
size_t iconv(iconv_t, char **restrict, size_t *restrict,
char **restrict, size_t *restrict);
int iconv_close(iconv_t);
APPLICATION USAGE
None.
RATIONALE
None.
FUTURE DIRECTIONS
None.
SEE ALSO
The System Interfaces volume of IEEE Std 1003.1-2001 (“POSIX.1”), iconv(3), iconv_close(3), iconv_open(3)
CHANGE HISTORY
First released in Issue 4.
Issue 6
The restrict keyword is added to the prototype for iconv(3).
End of informative text. footer end
January 1, 2004 posix.fail