Blame


1 014c66b6 2023-06-25 op #include_next "string.h"
2 014c66b6 2023-06-25 op
3 014c66b6 2023-06-25 op #include "../config.h"
4 014c66b6 2023-06-25 op
5 014c66b6 2023-06-25 op #if !HAVE_STRLCPY
6 014c66b6 2023-06-25 op size_t strlcpy(char *, const char *, size_t);
7 014c66b6 2023-06-25 op #endif
8 014c66b6 2023-06-25 op
9 014c66b6 2023-06-25 op #if !HAVE_STRLCAT
10 014c66b6 2023-06-25 op size_t strlcat(char *, const char *, size_t);
11 014c66b6 2023-06-25 op #endif