MSTL 1.4.0
A Modern C++ Library with extended functionality, web components, and utility libraries
载入中...
搜索中...
未找到
vsprintf.hpp 文件参考

MSTL兼容C格式化函数 更多...

#include "MSTL/core/typeinfo/types.hpp"
#include <cstdarg>
vsprintf.hpp 的引用(Include)关系图:

浏览该文件的源代码.

函数

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
 计算格式化字符串所需缓冲区大小

详细描述

MSTL兼容C格式化函数

此文件提供了格式化函数的声明,包括可变参数版本的格式化。

在文件 vsprintf.hpp 中定义.