mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
568b27baeb
svn path=/trunk/; revision=13063
13 lines
217 B
C++
13 lines
217 B
C++
// 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
|