• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef CodePointRangeIteratorResult_D_H
2 #define CodePointRangeIteratorResult_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 struct CodePointRangeIteratorResult {
15   char32_t start;
16   char32_t end;
17   bool done;
18 } CodePointRangeIteratorResult;
19 
20 typedef struct CodePointRangeIteratorResult_option {union { CodePointRangeIteratorResult ok; }; bool is_ok; } CodePointRangeIteratorResult_option;
21 
22 
23 
24 #endif // CodePointRangeIteratorResult_D_H
25