Updating built in Io code to use += instead of x = x + y
[io/quag.git] / libs / basekit / source / PortableStrlcpy.h
blob6d9c0d9b729d061c13504f6d97ad1c532a2dce97
1 #ifdef _WIN32
2 #include <stddef.h> // size_t on windows
3 #else
4 #include <sys/types.h> // size_t
5 #endif
7 #define strlcpy(d, s, l) PortableStrlcpy((d), (s), (l))
9 size_t PortableStrlcpy(char*, const char*, size_t);