| 296 | |
| 297 | # if __has_builtin(__builtin_strchr) |
| 298 | builtin_function(strchr) FAR char *strchr(FAR const char *s, int c) |
| 299 | { |
| 300 | if (__builtin_constant_p(s)) |
| 301 | { |
| 302 | return __builtin_strchr(s, c); |
| 303 | } |
| 304 | else |
| 305 | { |
| 306 | return __orig_strchr(s, c); |
| 307 | } |
| 308 | } |
| 309 | # endif |
| 310 | |
| 311 | # if __has_builtin(__builtin_strcmp) |
no outgoing calls
no test coverage detected