1 2 3 4 5 6 7 8
@use_strlcpy@ identifier src, dst; expression size; @@ ( - snprintf(dst, size, "%s", src) + strlcpy(dst, src, size) )