diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2013-03-22 18:32:37 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2013-03-22 18:32:37 -0700 |
commit | b06dee43696b5057ee8e1b9700655ad9e7d89669 (patch) | |
tree | 2c2faf2573f390a54dce9cdbda5e5e9747af087f /zlib.h | |
parent | dd5d0940e93f2196a7791b1bf052d68309a7d45f (diff) | |
download | zlib-b06dee43696b5057ee8e1b9700655ad9e7d89669.tar.gz zlib-b06dee43696b5057ee8e1b9700655ad9e7d89669.tar.bz2 zlib-b06dee43696b5057ee8e1b9700655ad9e7d89669.zip |
Add gzvprintf() as an undocumented function in zlib.
The function is only available if stdarg.h is available.
Diffstat (limited to 'zlib.h')
-rw-r--r-- | zlib.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1753,6 +1753,12 @@ ZEXTERN int ZEXPORT deflateResetKeep OF((z_streamp)); | |||
1753 | ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path, | 1753 | ZEXTERN gzFile ZEXPORT gzopen_w OF((const wchar_t *path, |
1754 | const char *mode)); | 1754 | const char *mode)); |
1755 | #endif | 1755 | #endif |
1756 | #if defined(STDC) || defined(Z_HAVE_STDARG_H) | ||
1757 | # ifndef Z_SOLO | ||
1758 | ZEXTERN int ZEXPORTVA gzvprintf Z_ARG((gzFile file, const char *format, | ||
1759 | va_list va)); | ||
1760 | # endif | ||
1761 | #endif | ||
1756 | 1762 | ||
1757 | #ifdef __cplusplus | 1763 | #ifdef __cplusplus |
1758 | } | 1764 | } |