TODO: Look at performance benefits of comparing words.
| 16 | |
| 17 | // TODO: Look at performance benefits of comparing words. |
| 18 | LLVM_LIBC_FUNCTION(char *, strchr, (const char *src, int c)) { |
| 19 | return internal::strchr_implementation(src, c); |
| 20 | } |
| 21 | |
| 22 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no test coverage detected