#include <cel_printf.h>
Static Public Member Functions | |
| static Char * | sprintf (const Char *format,...) |
| static Char * | vsprintf (const Char *format, std::va_list ap) |
char version and wchar_t version are provided. Definition at line 25 of file cel_printf.h.
| static Char* Celartem::Printf< Char >::sprintf | ( | const Char * | format, | |
| ... | ||||
| ) | [static] |
This function works much like as sprintf except it allocates the buffer using std::malloc function. The details of the parameters are identical to _vsnwprintf.
Currently, this function is not implemented except Windows.
| format | Format specification. | |
| ap | Pointer to list of parameters. |
std::free function. | static Char* Celartem::Printf< Char >::vsprintf | ( | const Char * | format, | |
| std::va_list | ap | |||
| ) | [static] |
This function works much like as vsprintf except it allocates the buffer using std::malloc function. The details of the parameters are identical to _vsnwprintf.
Currently, this function is not implemented except Windows.
| format | Format specification. | |
| ap | Pointer to list of parameters. |
std::free function.