mbsinit
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <wchar.h> 中定义
|
||
int mbsinit( const mbstate_t* ps); |
||
如果
ps
是不是一个空指针,mbsinit
的功能确定是否有针对性的mbstate_t对象描述了初始转换状态. 原文:
If
ps
is not a null pointer, the mbsinit
function determines whether the pointed-to mbstate_t object describes the initial conversion state. 目录 |
[编辑] 注释
虽然初始化为零的mbstate_t始终代表初始转换状态,也有可能是其它值,也代表了初始转换状态的mbstate_t.
[编辑] 参数
ps | - | 指针的mbstate_t对象检查
原文: pointer to the mbstate_t object to examine |
[编辑] 返回值
0如果
ps
是不是一个空指针和,不reporesent的初始转换状态,非零值,否则.....原文:
0 if
ps
is not a null pointer and does not reporesent the initial conversion state, nonzero value otherwise.[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
迭代多字节字符串转换所需的状态信息 原文: conversion state information necessary to iterate multibyte character strings (类) | |
C++ documentation for mbsinit
|