clang 22.0.0git
stdckdint.h File Reference

Go to the source code of this file.

Macros

#define __STDC_VERSION_STDCKDINT_H__   202311L
#define ckd_add(R, A, B)
#define ckd_sub(R, A, B)
#define ckd_mul(R, A, B)

Macro Definition Documentation

◆ __STDC_VERSION_STDCKDINT_H__

#define __STDC_VERSION_STDCKDINT_H__   202311L

Definition at line 24 of file stdckdint.h.

◆ ckd_add

#define ckd_add ( R,
A,
B )
Value:
__builtin_add_overflow((A), (B), (R))

Definition at line 37 of file stdckdint.h.

◆ ckd_mul

#define ckd_mul ( R,
A,
B )
Value:
__builtin_mul_overflow((A), (B), (R))

Definition at line 39 of file stdckdint.h.

◆ ckd_sub

#define ckd_sub ( R,
A,
B )
Value:
__builtin_sub_overflow((A), (B), (R))

Definition at line 38 of file stdckdint.h.