blob: a23d0a3b9e92e79e0f130bb846c4af59d504d3ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#ifndef ICU4XIsoWeekday_H
#define ICU4XIsoWeekday_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"
#ifdef __cplusplus
namespace capi {
#endif
typedef enum ICU4XIsoWeekday {
ICU4XIsoWeekday_Monday = 1,
ICU4XIsoWeekday_Tuesday = 2,
ICU4XIsoWeekday_Wednesday = 3,
ICU4XIsoWeekday_Thursday = 4,
ICU4XIsoWeekday_Friday = 5,
ICU4XIsoWeekday_Saturday = 6,
ICU4XIsoWeekday_Sunday = 7,
} ICU4XIsoWeekday;
#ifdef __cplusplus
} // namespace capi
#endif
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif
void ICU4XIsoWeekday_destroy(ICU4XIsoWeekday* self);
#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif
|