Home
last modified time | relevance | path

Searched refs:fromcode (Results 1 – 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/src/stdlib/
DSDL_iconv.c168 SDL_iconv_t SDL_iconv_open(const char *tocode, const char *fromcode) in SDL_iconv_open() argument
176 if ( !fromcode || !*fromcode ) { in SDL_iconv_open()
177 fromcode = getlocale(fromcode_buffer, sizeof(fromcode_buffer)); in SDL_iconv_open()
183 if ( SDL_strcasecmp(fromcode, encodings[i].name) == 0 ) { in SDL_iconv_open()
815 char *SDL_iconv_string(const char *tocode, const char *fromcode, const char *inbuf, size_t inbytesl… in SDL_iconv_string() argument
824 cd = SDL_iconv_open(tocode, fromcode); in SDL_iconv_string()
830 if ( !fromcode || !*fromcode ) { in SDL_iconv_string()
831 fromcode = "UTF-8"; in SDL_iconv_string()
833 cd = SDL_iconv_open(tocode, fromcode); in SDL_iconv_string()
/external/qemu/distrib/sdl-1.2.15/include/
DSDL_stdinc.h602 extern DECLSPEC SDL_iconv_t SDLCALL SDL_iconv_open(const char *tocode, const char *fromcode);
609 extern DECLSPEC char * SDLCALL SDL_iconv_string(const char *tocode, const char *fromcode, const cha…