WCSTOIMAX - Linux手册页

时间:2019-08-20 18:01:39  来源:igfitidea点击:

Linux程序员手册 第3部分
更新日期: 2015-08-08

名称

wcstoimax,wcstoumax-将宽字符字符串转换为整数

语法

#include <stddef.h>
#include <inttypes.h>

intmax_t wcstoimax(const wchar_t *nptr, wchar_t **endptr, int base);
uintmax_t wcstoumax(const wchar_t *nptr, wchar_t **endptr, int base);

说明

这些函数类似于wcstol(3)和wcstoul(3),不同之处在于它们分别返回类型为intmax_t和uintmax_t的值。

属性

有关本节中使用的术语的说明,请参见attribute(7)。

InterfaceAttributeValue
wcstoimax(),wcstoumax()Thread safetyMT-Safe locale

遵循规范

POSIX.1-2001,POSIX.1-2008,C99。

另外参见

imaxabs(3),imaxdiv(3),strtoimax(3),strtoumax(3),wcstol(3),wcstoul(3)

出版信息

这个页面是Linux手册页项目5.08版的一部分。有关项目的说明、有关报告错误的信息以及此页面的最新版本,请访问https://www.kernel.org/doc/man-pages/