| 30 | } |
| 31 | |
| 32 | inline size_t cpp_strnlen(const char *s, size_t n) { return cpp_basic_strnlen<char>(s, n); } |
| 33 | inline size_t cpp_wstrnlen(const wchar_t *s, size_t n) { return cpp_basic_strnlen<wchar_t>(s, n); } |
| 34 | |
| 35 | // strnchr |
nothing calls this directly
no outgoing calls
no test coverage detected