MCPcopy Index your code
hub / github.com/MapServer/MapServer / msStringToLower

Function msStringToLower

mapstring.c:399–408  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

397}
398
399void msStringToLower(char *string) {
400 int i;
401
402 if (string != NULL) {
403 for (i = 0; i < strlen(string); i++) {
404 string[i] = tolower(string[i]);
405 }
406 return;
407 }
408}
409
410char *msStringChop(char *string) {
411 int n;

Callers 3

msGML3BoundedByFunction · 0.85
msGML3PointFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected