1
0
Fork 0
mirror of https://github.com/reactos/reactos.git synced 2025-05-03 12:50:05 +00:00
reactos/irc/ArchBlackmann/ssprintf.h

13 lines
217 B
C
Raw Normal View History

// ssprintf.h
#ifndef SSPRINTF_H
#define SSPRINTF_H
#include <string>
#include <stdarg.h>
std::string ssprintf ( const char* fmt, ... );
std::string ssvprintf ( const char* fmt, va_list args );
#endif//SSPRINTF_H