|
|
Generates a new string from a format specifier and parameters. - Parameters:
-
| format | The 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()
|