#include "dictP.h" #include #include #include #include /* partial vsnprintf implementation: - size PARAMETER IS COMPLETELY IGNORED */ int vsnprintf(char *str, size_t size, const char *format, va_list ap) { vsprintf (str, format, ap); if (strlen (str) >= size) err_fatal( __FUNCTION__, "Buffer too small\n" ); }