blob: c49bf576686ca03aa1524cd33add2d3d17096bbe [file] [log] [blame]
Patrick Georgiea063cb2020-05-08 19:28:13 +02001/* unsigned OPTION type */
Patrick Georgi7333a112020-05-08 20:48:04 +02002/* SPDX-License-Identifier: GPL-2.0-only */
Sol Boucher69b88bf2015-02-26 11:47:19 -08003
4#ifndef OPTION_H_
5#define OPTION_H_
6
7struct 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