mysnprintf.hh

Go to the documentation of this file.
00001 //      mysnprintf.hh -- workaround for missing snprintf()
00002 
00003 #include <stdarg.h>
00004 
00005 #define snprintf mysnprintf
00006 #define vsnprintf myvsnprintf
00007 
00008 int mysnprintf(char *dest, size_t dest_size, const char *format, ...);
00009 int myvsnprintf(char *dest, size_t dest_size, const char *format, va_list ap);
00010 
00011 
g4beamline