|
MSTL 1.4.0
A Modern C++ Library with extended functionality, web components, and utility libraries
|
MSTL兼容C格式化函数 更多...
函数 | |
| int MSTL_API | vsprintf (char *buf, const char *fmt, std::va_list args) noexcept |
| 格式化到缓冲区 | |
| int MSTL_API | vsnprintf (char *buf, size_t size, const char *fmt, std::va_list args) noexcept |
| 安全格式化到缓冲区 | |
| int MSTL_API | sprintf (char *buf, const char *fmt,...) noexcept |
| 格式化到缓冲区 | |
| int MSTL_API | snprintf (char *buf, size_t size, const char *fmt,...) noexcept |
| 安全格式化到缓冲区 | |
| int MSTL_API | scprintf (const char *fmt,...) noexcept |
| 计算格式化字符串所需缓冲区大小 | |