• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef FixedDecimalSignDisplay_D_H
2 #define FixedDecimalSignDisplay_D_H
3 
4 #include <stdio.h>
5 #include <stdint.h>
6 #include <stddef.h>
7 #include <stdbool.h>
8 #include "diplomat_runtime.h"
9 
10 
11 
12 
13 
14 typedef enum FixedDecimalSignDisplay {
15   FixedDecimalSignDisplay_Auto = 0,
16   FixedDecimalSignDisplay_Never = 1,
17   FixedDecimalSignDisplay_Always = 2,
18   FixedDecimalSignDisplay_ExceptZero = 3,
19   FixedDecimalSignDisplay_Negative = 4,
20 } FixedDecimalSignDisplay;
21 
22 typedef struct FixedDecimalSignDisplay_option {union { FixedDecimalSignDisplay ok; }; bool is_ok; } FixedDecimalSignDisplay_option;
23 
24 
25 
26 #endif // FixedDecimalSignDisplay_D_H
27