命名空间
变体
操作

标准库头文件 <stdckdint.h> (C23)

来自 cppreference.cn
< c‎ | 头文件

此头文件是 数值 库的一部分,特别是,它为 checked integer arithmetic 提供了 类型泛型宏

函数

两个整数的 checked 加法运算
(类型泛型函数宏)[编辑]
两个整数的 checked 减法运算
(类型泛型函数宏)[编辑]
两个整数的 checked 乘法运算
(类型泛型函数宏)[编辑]

[编辑] 概要

#define __STDC_VERSION_STDCKDINT_H__ 202311L
 
bool ckd_add(/*type1*/* result, /*type2*/ a, /*type3*/ b);
bool ckd_sub(/*type1*/* result, /*type2*/ a, /*type3*/ b);
bool ckd_mul(/*type1*/* result, /*type2*/ a, /*type3*/ b);