blob: 9a25f5ac53d5c1eda8b813198213397826f2ddb7 [file] [log] [blame]
Sol Boucher69b88bf2015-02-26 11:47:19 -08001/*
2 * option.h, unsigned OPTION type
3 *
4 * Copyright (C) 2015 Google, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Sol Boucher69b88bf2015-02-26 11:47:19 -080014 */
15
16#ifndef OPTION_H_
17#define OPTION_H_
18
19struct unsigned_option {
20 bool val_known;
21 /** It is an error to read this field unless val_known is set. */
22 unsigned val;
23};
24
25#endif