Canola  0.8.D001
Functions
lib/std_string_printf.cc File Reference
#include <lib/ac/stdio.h>
#include <lib/std_string_printf.h>

Go to the source code of this file.

Functions

std::string std_string_printf (const char *fmt,...)
std::string std_string_printf_v (const char *fmt, va_list ap)

Function Documentation

std::string std_string_printf ( const char *  fmt,
  ... 
)

The std_string_printf function is used to take a format string and turn it into a C++ string.

Parameters:
fmtThe format of the result, and describes ther number and types of the remaining arguments.

Definition at line 24 of file std_string_printf.cc.

std::string std_string_printf_v ( const char *  fmt,
va_list  ap 
)

The std_string_printf_v function is used to take a format string and turn it into a C++ string.

Parameters:
fmtThe format of the result, and describes ther number and types of the remaining arguments.
apThe rest of the arguments.

Definition at line 35 of file std_string_printf.cc.