PluralCategory.d.h (516B)
1 #ifndef PluralCategory_D_H 2 #define PluralCategory_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 PluralCategory { 15 PluralCategory_Zero = 0, 16 PluralCategory_One = 1, 17 PluralCategory_Two = 2, 18 PluralCategory_Few = 3, 19 PluralCategory_Many = 4, 20 PluralCategory_Other = 5, 21 } PluralCategory; 22 23 typedef struct PluralCategory_option {union { PluralCategory ok; }; bool is_ok; } PluralCategory_option; 24 25 26 27 #endif // PluralCategory_D_H