[PATCH 24.03 v2 1/5] arg_parser: new library for command line parsing

Stephen Hemminger stephen at networkplumber.org
Wed Nov 29 23:12:54 CET 2023


On Tue, 28 Nov 2023 14:07:41 +0000
Euan Bourke <euan.bourke at intel.com> wrote:

> +static inline bool
> +get_core_bit(struct core_bits *mask, uint16_t idx)
> +{
> +	return !!(mask->bits[idx / 8] & (1 << (idx % 8)));
> +}
> +

You used CHAR_BIT above, why not here?


More information about the dev mailing list