| 127 | } |
| 128 | |
| 129 | fortify_function(strlcat) size_t strlcat(FAR char *dst, |
| 130 | FAR const char *src, |
| 131 | size_t dsize) |
| 132 | { |
| 133 | fortify_assert(dsize <= fortify_size(dst, 0)); |
| 134 | return __real_strlcat(dst, src, dsize); |
| 135 | } |
| 136 | |
| 137 | fortify_function(strncat) FAR char *strncat(FAR char *dest, |
| 138 | FAR const char *src, |
no outgoing calls
no test coverage detected