lib/cbfs: deserialize cbfs_stage objects correctly
[coreboot.git] / util / cbfstool / option.h
blobc49bf576686ca03aa1524cd33add2d3d17096bbe
1 /* unsigned OPTION type */
2 /* SPDX-License-Identifier: GPL-2.0-only */
4 #ifndef OPTION_H_
5 #define OPTION_H_
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;
13 #endif