MCPcopy Create free account
hub / github.com/acl-dev/acl / acl_lowercase

Function acl_lowercase

lib_acl/src/stdlib/string/acl_mystring.c:20–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

18#endif
19
20char *acl_lowercase(char *s)
21{
22 char *cp = s;
23
24 if (s == NULL) {
25 return NULL;
26 }
27
28 while (*cp) {
29 *cp = (char) tolower(*cp);
30 cp++;
31 }
32
33 return s;
34}
35
36char *acl_lowercase2(char *s, size_t n)
37{

Callers 15

dict_cdbq_lookupFunction · 0.85
dict_cdbm_updateFunction · 0.85
dict_db_lookupFunction · 0.85
dict_db_updateFunction · 0.85
dict_db_deleteFunction · 0.85
dict_tc_lookupFunction · 0.85
dict_tc_updateFunction · 0.85
dict_tc_deleteFunction · 0.85
http_service_initFunction · 0.85
http_serviceFunction · 0.85
http_service_initFunction · 0.85
http_serviceFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…