table of contents
- trixie 3.2.10+ds-1
- testing 3.4.2+ds-1
- unstable 3.4.2+ds-1
- experimental 3.5~git20260304~c20a058+ds-1
| SDL_iconv_string(3) | SDL3 FUNCTIONS | SDL_iconv_string(3) |
NAME¶
SDL_iconv_string - Helper function to convert a string's encoding in one call.
SYNOPSIS¶
#include <SDL3/SDL_stdinc.h>
char * SDL_iconv_string(const char *tocode,
const char *fromcode,
const char *inbuf,
size_t inbytesleft);
DESCRIPTION¶
This function converts a buffer or string between encodings in one pass.
The string does not need to be NULL-terminated; this function operates on the number of bytes specified in inbytesleft whether there is a NULL character anywhere in the buffer.
The returned string is owned by the caller, and should be passed to SDL_free when no longer needed.
FUNCTION PARAMETERS¶
- tocode
- the character encoding of the output string. Examples are "UTF-8", "UCS-4", etc.
- fromcode
- the character encoding of data in inbuf.
- inbuf
- the string to convert to a different encoding.
- inbytesleft
- the size of the input string _in bytes_.
RETURN VALUE¶
Returns a new string, converted to the new encoding, or NULL on error.
THREAD SAFETY¶
It is safe to call this function from any thread.
AVAILABILITY¶
This function is available since SDL 3.2.0.
SEE ALSO¶
| SDL 3.5.0 | Simple Directmedia Layer |