MCPcopy Create free account
hub / github.com/apache/trafficserver / LowerCaseStr

Function LowerCaseStr

include/tscore/MatcherUtils.h:122–132  ·  view source on GitHub ↗

inline void LowerCaseStr(char* str) Modifies str so all characters are lower case

Source from the content-addressed store, hash-verified

120// case
121//
122static inline void
123LowerCaseStr(char *str)
124{
125 if (!str) {
126 return;
127 }
128 while (*str != '\0') {
129 *str = ParseRules::ink_tolower(*str);
130 str++;
131 }
132}

Callers 1

remap_parse_config_btiFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected