summaryrefslogtreecommitdiff
path: root/util/cbfstool/option.h
blob: c49bf576686ca03aa1524cd33add2d3d17096bbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* 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