diff options
author | Zied Aouini <aouinizied@gmail.com> | 2022-04-15 13:22:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-15 13:22:25 +0200 |
commit | fba75a3cf5e06d2c9b8c7b1823cafd6e8ca636bc (patch) | |
tree | 13355914f93b668afb47f2b5b643dffc073fb8e7 /src/include/ndpi_utils.h | |
parent | 4775be3d85434d4e385f43a47b783844bbfb2571 (diff) | |
parent | c3df3a12aa88739e303340ccd7436d467b4662d2 (diff) |
Merge pull request #1491 from utoni/fix/windows-msys2
Fixed msys2 build and re-activated CI Mingw-w64 build.
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 |