MCPcopy Create free account
hub / github.com/R-Fuzz/symsan / _strlen

Function _strlen

runtime/interception/interception_win.cpp:175–179  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

173// ASan sources into interception/.
174
175static size_t _strlen(const char *str) {
176 const char* p = str;
177 while (*p != '\0') ++p;
178 return p - str;
179}
180
181static char* _strchr(char* str, char c) {
182 while (*str) {

Callers 1

InternalGetProcAddressFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected