xref: /aosp_15_r20/external/coreboot/util/cbfstool/option.h (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* unsigned OPTION type */
2 /* SPDX-License-Identifier: GPL-2.0-only */
3 
4 #ifndef OPTION_H_
5 #define OPTION_H_
6 
7 struct unsigned_option {
8 	bool val_known;
9 	/** It is an error to read this field unless val_known is set. */
10 	unsigned val;
11 };
12 
13 #endif
14