MCPcopy Create free account
hub / github.com/OpenSIPS/opensips / strlower

Function strlower

ut.h:685–692  ·  view source on GitHub ↗

* Convert a string to lower case */

Source from the content-addressed store, hash-verified

683 * Convert a string to lower case
684 */
685static inline void strlower(str* _s)
686{
687 int i;
688
689 for(i = 0; i < _s->len; i++) {
690 _s->s[i] = tolower(_s->s[i]);
691 }
692}
693
694/*
695 * Convert a str into a short integer

Callers 3

get_type_from_decltypeFunction · 0.85
cpl_initFunction · 0.85
extract_aorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected