• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* unsigned OPTION type */
2 /* SPDX-License-Identifier: GPL-2.0-only */
3 
4 #ifndef OPTION_H_
5 #define OPTION_H_
6 
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;
11 };
12 
13 #endif
14