.\" .\" Copyright (c) 2025 Robert Clausecker .\" .\" SPDX-License-Identifier: BSD-2-Clause .\" .Dd November 9, 2025 .Dt STDC_BIT_CEIL 3 .Os .Sh NAME .Nm stdc_bit_ceil .Nd round up to the next power of\~2 .Sh SYNOPSIS .Lb libc .In stdbit.h .Ft unsigned char .Fn stdc_bit_ceil_uc "unsigned char value" .Ft unsigned short .Fn stdc_bit_ceil_us "unsigned short value" .Ft unsigned int .Fn stdc_bit_ceil_ui "unsigned int value" .Ft unsigned long .Fn stdc_bit_ceil_ul "unsigned long value" .Ft unsigned long long .Fn stdc_bit_ceil_ull "unsigned long long value" .Ft typeof Ns Pq Em value .Fn stdc_bit_ceil "value" .Sh DESCRIPTION The .Nm stdc_bit_ceil_ Ns Em type Ns () family of functions rounds .Fa value up to the next power of\~2, where .Fa value is of type .Va unsigned char , .Va unsigned short , .Va unsigned int , .Va unsigned long , or .Va unsigned long long for .Em type being .Sy uc , .Sy us , .Sy ui , .Sy ul , or .Sy ull respectively. The .Fn stdc_bit_ceil "value" type-generic macro picks the appropriate .Nm stdc_bit_ceil_ Ns Em type Ns () function based on the type of .Fa value . .Sh RETURN VALUES Returns .Fa value round up to the next power of\~2. If this value is not representable, 0\~is returned. .Sh SEE ALSO .Xr stdbit 3 , .Xr stdc_bit_floor 3 .Sh STANDARDS The .Nm stdc_bit_ceil_ Ns Em type Ns () family of functions and the .Fn stdc_bit_ceil type-generic macro conform to .St -isoC-2023 . .Sh HISTORY The .Nm stdc_bit_ceil_ Ns Em type Ns () family of functions and the .Fn stdc_bit_ceil type-generic macro were added in .Fx 15.1. .Sh AUTHOR .An Robert Clausecker Aq Mt fuz@FreeBSD.org