| 431 | |
| 432 | # if __has_builtin(__builtin_strrchr) |
| 433 | builtin_function(strrchr) FAR char *strrchr(FAR const char *s, |
| 434 | int c) |
| 435 | { |
| 436 | if (__builtin_constant_p(s)) |
| 437 | { |
| 438 | return __builtin_strrchr(s, c); |
| 439 | } |
| 440 | else |
| 441 | { |
| 442 | return __orig_strrchr(s, c); |
| 443 | } |
| 444 | } |
| 445 | # endif |
| 446 | #endif |
| 447 |
no outgoing calls
no test coverage detected