| 1 | #ifndef FM_STRL_H |
| 2 | #define FM_STRL_H |
| 3 | |
| 4 | #include "config.h" |
| 5 | |
| 6 | /* strlcpy/strlcat prototypes */ |
| 7 | #ifndef HAVE_STRLCAT |
| 8 | size_t |
| 9 | strlcat(char *dst, const char *src, size_t siz); |
| 10 | #endif |
| 11 | #ifndef HAVE_STRLCPY |
| 12 | size_t |
| 13 | strlcpy(char *dst, const char *src, size_t siz); |
| 14 | #endif |
| 15 | |
| 16 | #endif |

