gcontini
2021-05-20 469d6ff29ebc8bed44458695186d57bfed0edb6c
src/library/base/string_utils.h
@@ -33,6 +33,9 @@
// strnln_s is not well supported and strlen is marked unsafe..
size_t mstrnlen_s(const char* szptr, size_t maxsize);
// strlcpy is not a standard function but it's the safest way to copy to c strings...
// let's provide a custom implementation
size_t mstrlcpy(char* dst, const char* src, size_t n);
typedef enum {
   INI, BASE64, UNKNOWN
} FILE_FORMAT;