blob: 6d98bc8ccb591775be9bdd27f9f11525965a0cb6 (
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
|
#ifndef ICU4XTimeLength_H
#define ICU4XTimeLength_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"
#ifdef __cplusplus
namespace capi {
#endif
typedef enum ICU4XTimeLength {
ICU4XTimeLength_Full = 0,
ICU4XTimeLength_Long = 1,
ICU4XTimeLength_Medium = 2,
ICU4XTimeLength_Short = 3,
} ICU4XTimeLength;
#ifdef __cplusplus
} // namespace capi
#endif
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif
void ICU4XTimeLength_destroy(ICU4XTimeLength* self);
#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif
|