blob: 5441b943d41f583e5b53b621574e93ac82220444 (
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 ICU4XWeekOf_H
#define ICU4XWeekOf_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"
#include "ICU4XWeekRelativeUnit.h"
#ifdef __cplusplus
namespace capi {
#endif
typedef struct ICU4XWeekOf {
uint16_t week;
ICU4XWeekRelativeUnit unit;
} ICU4XWeekOf;
#ifdef __cplusplus
} // namespace capi
#endif
#include "ICU4XWeekRelativeUnit.h"
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif
void ICU4XWeekOf_destroy(ICU4XWeekOf* self);
#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif
|