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