MCPcopy Create free account
hub / github.com/kiibohd/controller / strlen

Function strlen

Output/SeggerRTT/string.c:29–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27}
28
29size_t strlen(const char *str)
30{
31 const char *start = str;
32
33 while (*str++ != '\0')
34 ;
35
36 return str - start - 1;
37}

Callers 1

parse_hex_lineFunction · 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…