命名空间
变体
操作

wctob

来自 cppreference.com
< c‎ | string‎ | multibyte
在头文件 <wchar.h> 中定义
int wctob( wint_t c );
(自 C95 起)

如果宽字符 c 在初始移位状态下的多字节字符等价物是单个字节,则缩小宽字符 c

这通常对来自 ASCII 字符集的字符来说是可能的,因为大多数多字节编码(如 UTF-8)使用单个字节来对这些字符进行编码。

内容

[编辑] 参数

c - 要缩小的宽字符

[编辑] 返回值

EOF 如果 c 在初始移位状态下不表示长度为 1 的多字节字符。

否则,c 的单字节表示形式为 unsigned char 转换为 int

[编辑] 示例

#include <locale.h>
#include <wchar.h>
#include <stdio.h>
#include <assert.h>
 
void try_narrowing(wchar_t c)
{
    int cn = wctob(c);
    if(cn != EOF)
        printf("%#x narrowed to %#x\n", c, cn);
    else
        printf("%#x could not be narrowed\n", c);
}
 
int main(void)
{
    char* utf_locale_present = setlocale(LC_ALL, "th_TH.utf8");
    assert(utf_locale_present);
    puts("In Thai UTF-8 locale:");
    try_narrowing(L'a');
    try_narrowing(L'๛');
 
    char* tis_locale_present = setlocale(LC_ALL, "th_TH.tis620");
    assert(tis_locale_present);
    puts("In Thai TIS-620 locale:");
    try_narrowing(L'a');
    try_narrowing(L'๛');
}

可能的输出

In Thai UTF-8 locale:
0x61 narrowed to 0x61
0xe5b could not be narrowed
In Thai TIS-620 locale:
0x61 narrowed to 0x61
0xe5b narrowed to 0xfb

[编辑] 参考文献

  • C11 标准 (ISO/IEC 9899:2011)
  • 7.29.6.1.2 wctob 函数 (p: 441)
  • C99 标准 (ISO/IEC 9899:1999)
  • 7.24.6.1.2 wctob 函数 (p: 387)

[编辑] 另请参阅

(C95)
如果可能,将单个字节的窄字符转换为宽字符
(函数) [编辑]
C++ 文档 for wctob