the string to convert
the length of the string, or -1 if the string is nul-terminated[2].
name of character set into which to convert str
character set of str.
location to store the number of bytes in the input string that were successfully converted, or NULL. Even if the conversion was successful, this may be less than len if there were partial characters at the end of the input. If the error G_CONVERT_ERROR_ILLEGAL_SEQUENCE occurs, the value stored will the byte offset after the last valid input sequence. out
the number of bytes stored in the output buffer (not including the terminating nul). out
If the conversion was successful, a newly allocated nul-terminated string, which must be freed with g_free(). Otherwise NULL and error will be set.
GException on failure.
Converts a string from one character set to another. Note that you should use g_iconv() for streaming conversions[3].