Searched defs:SDL_strlen (Results 1 - 2 of 2) sorted by relevance

/external/qemu/distrib/sdl-1.2.15/include/
H A DSDL_stdinc.h395 #define SDL_strlen strlen macro
397 extern DECLSPEC size_t SDLCALL SDL_strlen(const char *string);
610 #define SDL_iconv_utf8_locale(S) SDL_iconv_string("", "UTF-8", S, SDL_strlen(S)+1)
611 #define SDL_iconv_utf8_ucs2(S) (Uint16 *)SDL_iconv_string("UCS-2", "UTF-8", S, SDL_strlen(S)+1)
612 #define SDL_iconv_utf8_ucs4(S) (Uint32 *)SDL_iconv_string("UCS-4", "UTF-8", S, SDL_strlen(S)+1)
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_string.c318 size_t SDL_strlen(const char *string) function
331 size_t srclen = SDL_strlen(src);
344 size_t dstlen = SDL_strlen(dst);
345 size_t srclen = SDL_strlen(src);
356 size_t len = SDL_strlen(string)+1;
368 size_t len = SDL_strlen(string);
421 const char *bufp = string + SDL_strlen(string) - 1;
435 size_t length = SDL_strlen(needle);
515 if ( (SDL_strlen(string) > 2) && (SDL_strncmp(string, "0x", 2) == 0) ) {
537 if ( (SDL_strlen(strin
[all...]

Completed in 347 milliseconds