Mount Fuji Engine  0.8b
MF_API const char* MFStr ( const char *  format,
  ... 
)

Generates a new string from a format specifier and parameters.

Parameters
formatThe format string. Supports all the standard formatting provided by the CRT like printf().
...Variable argument list.
Returns
Pointer to the newly created string.
Remarks
MFStr() uses a circular buffer for storing the strings it produces. You should NOT keep a long term string generated by MFStr. MFStr() is best suited to generating temporary and intermediate strings for immediate use.
See Also
MFStrN()