diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2022-03-16 11:03:57 +0100 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2022-04-14 19:17:48 +0200 |
commit | c3df3a12aa88739e303340ccd7436d467b4662d2 (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /src/include/ndpi_utils.h | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) |
Fixed msys2 build warnings and re-activated CI Mingw64 build.fix/windows-msys2
* Removed Visual Studio leftovers. Maintaining an autotools project with VS integration requires some additional overhead.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/include/ndpi_utils.h')
-rw-r--r-- | src/include/ndpi_utils.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/ndpi_utils.h b/src/include/ndpi_utils.h index d6596ae1f..c6605528b 100644 --- a/src/include/ndpi_utils.h +++ b/src/include/ndpi_utils.h @@ -32,4 +32,9 @@ extern u_int8_t ndpi_ends_with(char *str, char *ends); ((ch) >= '[' && (ch) <= '`') || \ ((ch) >= '{' && (ch) <= '~')) +#ifndef NDPI_CFFI_PREPROCESSING +int ndpi_vsnprintf(char * str, size_t size, char const * format, va_list va_args); +int ndpi_snprintf(char * str, size_t size, char const * format, ...); +#endif + #endif |