| 355 | |
| 356 | # if __has_builtin(__builtin_strlen) |
| 357 | builtin_function(strlen) size_t strlen(FAR const char *s) |
| 358 | { |
| 359 | if (__builtin_constant_p(s)) |
| 360 | { |
| 361 | return __builtin_strlen(s); |
| 362 | } |
| 363 | else |
| 364 | { |
| 365 | return __orig_strlen(s); |
| 366 | } |
| 367 | } |
| 368 | # endif |
| 369 | |
| 370 | # if __has_builtin(__builtin_strncat) |
no outgoing calls