MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_strlwr

Function SDL_strlwr

deps/SDL2/src/stdlib/SDL_string.c:655–668  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

653}
654
655char *
656SDL_strlwr(char *string)
657{
658#if defined(HAVE__STRLWR)
659 return _strlwr(string);
660#else
661 char *bufp = string;
662 while (*bufp) {
663 *bufp = SDL_tolower((unsigned char) *bufp);
664 ++bufp;
665 }
666 return string;
667#endif /* HAVE__STRLWR */
668}
669
670char *
671SDL_strchr(const char *string, int c)

Callers 1

SDL_PrintStringFunction · 0.85

Calls 1

SDL_tolowerFunction · 0.85

Tested by

no test coverage detected