/* 
 * (c) Secure Software Solutions, 2001.  Licensed under the GNU Public License.
 */

#ifndef __VSNPRINTF_H__
#define __VSNPRINTF_H__
#ifndef HAVE_VSNPRINTF
int vsnprintf(char *str, size_t size, const char *format, va_list ap);
#endif
#ifndef HAVE_SNPRINTF
int snprintf(char *str, size_t size, const char *format, ...);
#endif
#ifndef HAVE_VSAPRINTF
int vsaprintf(char **str, const char *format, va_list ap);
#endif
#ifndef HAVE_SAPRINTF
int saprintf(char **str, const char *format, ...);
#endif
#endif
