|
|
|
@ -64,12 +64,12 @@ Example: |
|
|
|
#ifndef SNPRINTF_H |
|
|
|
#define SNPRINTF_H |
|
|
|
|
|
|
|
#if !defined(HAVE_SNPRINTF) || defined(BROKEN_SNPRINTF) |
|
|
|
#if !defined(HAVE_SNPRINTF) || PHP_BROKEN_SNPRINTF |
|
|
|
extern int ap_php_snprintf(char *, size_t, const char *, ...); |
|
|
|
#define snprintf ap_php_snprintf |
|
|
|
#endif |
|
|
|
|
|
|
|
#if !defined(HAVE_VSNPRINTF) || defined(BROKEN_VSNPRINTF) |
|
|
|
#if !defined(HAVE_VSNPRINTF) || PHP_BROKEN_VSNPRINTF |
|
|
|
extern int ap_php_vsnprintf(char *, size_t, const char *, va_list ap); |
|
|
|
#define vsnprintf ap_php_vsnprintf |
|
|
|
#endif |
|
|
|
|