tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

DecimalSign.d.h (412B)


      1 #ifndef DecimalSign_D_H
      2 #define DecimalSign_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 DecimalSign {
     15  DecimalSign_None = 0,
     16  DecimalSign_Negative = 1,
     17  DecimalSign_Positive = 2,
     18 } DecimalSign;
     19 
     20 typedef struct DecimalSign_option {union { DecimalSign ok; }; bool is_ok; } DecimalSign_option;
     21 
     22 
     23 
     24 #endif // DecimalSign_D_H