Sign in
cos
/
mirrors
/
cros
/
chromiumos
/
third_party
/
coreboot
/
refs/heads/chromeos-2016.05
/
.
/
util
/
cbfstool
/
option.h
blob: c49bf576686ca03aa1524cd33add2d3d17096bbe [
file
] [
log
] [
blame
] [
edit
]
/* unsigned OPTION type */
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef
OPTION_H_
#define
OPTION_H_
struct
unsigned_option
{
bool
val_known
;
/** It is an error to read this field unless val_known is set. */
unsigned
val
;
};
#endif