C 参考手册
- C 语言
- C 关键词
- 预处理器
- C 标准库头文件
- 类型支持
- 程序支持工具
- 变参数函数
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 空终止字节字符串
- 空终止多字节字符串
- mbsinit
- mbtowc
- btowc
- mbrtowc
- mbstowcs, mbstowcs_s
- mbsrtowcs, mbsrtowcs_s
- mbrtoc16
- c16rtomb
- c32rtomb
- mbrtoc32
- mblen
- wctomb, wctomb_s
- wcstombs, wcstombs_s
- wctob
- wcrtomb, wcrtomb_s
- wcsrtombs, wcsrtombs_s
- mbrlen
- mbstate_t
- char16_t
- char32_t
- 空终止宽字符串
- 算法
- 数值
- 文件输入/输出
- 本地化支持
- 原子操作库
- 线程支持库
- 实验性 C 标准库
- 有用的资源
- 符号索引
- 注释
wctob
定义于头文件 <wchar.h>
|
||
int wctob( wint_t c ); |
(C95 起) | |
若宽字符 c
的多字节字符等价在初始迁移状态为单字节,则窄化它。
这典型地对来自 ASCII 字符集的字符可行,因为大多数多字节编码(如 UTF-8 )用单字节编码这些字符。
参数
c | - | 要窄化的宽字符 |
返回值
若 c
不表示在初始迁移状态长度为 1 的多字节字符,则返回 EOF 。
否则,返回 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 standard (ISO/IEC 9899:2011):
- 7.29.6.1.2 The wctob function (p: 441)
- C99 standard (ISO/IEC 9899:1999):
- 7.24.6.1.2 The wctob function (p: 387)
参阅
(C95) |
将单字节窄字符加宽成宽字符,倘若可能 (函数) |