Implement "!bug <number>" command.
[reactos.git] / irc / ArchBlackmann / ssprintf.h
1 // ssprintf.h
2
3 #ifndef SSPRINTF_H
4 #define SSPRINTF_H
5
6 #include <string>
7 #include <stdarg.h>
8
9 std::string ssprintf ( const char* fmt, ... );
10 std::string ssvprintf ( const char* fmt, va_list args );
11
12 #endif//SSPRINTF_H