| 165 | } |
| 166 | |
| 167 | fortify_function(strlcpy) size_t strlcpy(FAR char *dst, |
| 168 | FAR const char *src, |
| 169 | size_t size) |
| 170 | { |
| 171 | fortify_assert(size <= fortify_size(dst, 0)); |
| 172 | return __real_strlcpy(dst, src, size); |
| 173 | } |
| 174 | |
| 175 | fortify_function(strncpy) FAR char *strncpy(FAR char *dest, |
| 176 | FAR const char *src, |
no outgoing calls
no test coverage detected