string.h 255 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #ifndef LIBA_BRIDGE_STRING_H #define LIBA_BRIDGE_STRING_H #include_next <string.h> #include "../private/macros.h" LIBA_BEGIN_DECLS #if (__GLIBC__ || __MINGW32__) size_t strlcpy(char * dst, const char * src, size_t len); #endif LIBA_END_DECLS #endif