OnITRoad - man3
WCTOB - Linux手册页
WCTOB - Linux手册页 Linux程序员手册 第3部分 更新日期: 2017-09-15 名称 wctob-尝试将宽字符表示为单个字节 语法 #include <wchar.h> int wctob(wint_t c); 说明 wctob()函数测试从初始状态开始的宽字符c的多字节表示形式是否由单个字节组成。如果是这样,则以无符号字符的形式返回。 切勿使用此功能
Views:0 2019-08-20
WCTOMB - Linux手册页
WCTOMB - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wctomb-将宽字符转换为多字节序列 语法 #include <stdlib.h> int wctomb(char *s, wchar_t wc); 说明 如果s不为NULL,则wctomb()函数将宽字符wc转换为其多字节表示形式,并将其存储在s指向的字符数组的
Views:0 2019-08-20
WCTRANS - Linux手册页
WCTRANS - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wctrans-宽字符翻译映射 语法 #include <wctype.h> wctrans_t wctrans(const char *name); 说明 wctrans_t类型表示可以将宽字符映射到另一个宽字符的映射。它的性质取决于实现,但是特殊值(wctra
Views:0 2019-08-20
WCTYPE - Linux手册页
WCTYPE - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wctype-宽字符分类 语法 #include <wctype.h> wctype_t wctype(const char *name); 说明 wctype_t类型表示宽字符可能具有或不具有的属性。换句话说,它代表一类宽字符。此类型的性质取决于实现,但是特殊值(
Views:0 2019-08-20
WCWIDTH - Linux手册页
WCWIDTH - Linux手册页 Linux程序员手册 第3部分 更新日期: 2019-03-06 名称 wcwidth-确定宽字符所需的列 语法 #define _XOPEN_SOURCE /* See feature_test_macros(7) */ #include <wchar.h> int wcwidth(wchar_t c); 说明 wcwi
Views:0 2019-08-20
WMEMCHR - Linux手册页
WMEMCHR - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wmemchr-在宽字符数组中搜索宽字符 语法 #include <wchar.h> wchar_t *wmemchr(const wchar_t *s, wchar_t c, size_t n); 说明 wmemchr()函数与memchr(3)函数的宽字符等效
Views:0 2019-08-20
WMEMCMP - Linux手册页
WMEMCMP - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wmemcmp-比较两个宽字符数组 语法 #include <wchar.h> int wmemcmp(const wchar_t *s1, const wchar_t *s2, size_t n); 说明 wmemcmp()函数与memcmp(3)函数的宽字符等
Views:0 2019-08-20
WMEMCPY - Linux手册页
WMEMCPY - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wmemcpy-复制宽字符数组 语法 #include <wchar.h> wchar_t *wmemcpy(wchar_t *dest, const wchar_t *src, size_t n); 说明 wmemcpy()函数与memcpy(3)函数的宽字符等
Views:0 2019-08-20
WMEMMOVE - Linux手册页
WMEMMOVE - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wmemmove-复制宽字符数组 语法 #include <wchar.h> wchar_t *wmemmove(wchar_t *dest, const wchar_t *src, size_t n); 说明 wmemmove()函数与memmove(3)函数
Views:0 2019-08-20
MEMPCPY - Linux手册页
MEMPCPY - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 mempcpy,wmempcpy-复制存储区 语法 #define _GNU_SOURCE /* See feature_test_macros(7) */ #include <string.h> void *mempcpy(void *dest, c
Views:0 2019-08-20
WMEMSET - Linux手册页
WMEMSET - Linux手册页 Linux程序员手册 第3部分 更新日期: 2015-08-08 名称 wmemset-用恒定的宽字符填充宽字符数组 语法 #include <wchar.h> wchar_t *wmemset(wchar_t *wcs, wchar_t wc, size_t n); 说明 wmemset()函数与memset(3)函数的宽字符等
Views:0 2019-08-20
WORDEXP - Linux手册页
WORDEXP - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 wordexp,freeword-像posix-shell一样执行单词扩展 语法 #包括 int wordexp(const char * s,wordexp_t * p,int标志); 无效的wordfree(wordexp_t * p); glibc的功能测试宏要求(请参阅fe
Views:0 2019-08-20
WORDEXP - Linux手册页
WORDEXP - Linux手册页 Linux程序员手册 第3部分 更新日期: 2020-06-09 名称 wordexp,freeword-像posix-shell一样执行单词扩展 语法 #包括 int wordexp(const char * s,wordexp_t * p,int标志); 无效的wordfree(wordexp_t * p); glibc的功能测试宏要求(请参阅fe
Views:0 2019-08-20
WPRINTF - Linux手册页
WPRINTF - Linux手册页 Linux程序员手册 第3部分 更新日期: 2019-03-06 名称 wprintf,fwprintf,swprintf,vwprintf,vfwprintf,vswprintf-格式化的宽字符输出转换 语法 #include <stdio.h> #include <wchar.h> int wprintf(const wc
Views:0 2019-08-20
XCRYPT - Linux手册页
XCRYPT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2019-03-06 名称 xencrypt,xdecrypt,passwd2des-RFS密码加密 语法 #包括 无效的passwd2des(char * passwd,char * key); int xencrypt(char * secret,char * passwd); int xdecrypt(c
Views:0 2019-08-20
XCRYPT - Linux手册页
XCRYPT - Linux手册页 Linux程序员手册 第3部分 更新日期: 2019-03-06 名称 xencrypt,xdecrypt,passwd2des-RFS密码加密 语法 #包括 无效的passwd2des(char * passwd,char * key); int xencrypt(char * secret,char * passwd); int xdecrypt(c
Views:0 2019-08-20