/* * vsprintf.h * * A very basic implmentation of thr vsprintf function */ #ifndef _VSPRINTF_H #define _VSPRINTF_H #include int vsprintf(char*, char*, va_list); #endif