summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/c/include/ICU4XLocaleDirectionality.h
blob: 9271b078c77c39c6fc040cdaff56600420c5b371 (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
37
38
39
40
41
42
#ifndef ICU4XLocaleDirectionality_H
#define ICU4XLocaleDirectionality_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"

#ifdef __cplusplus
namespace capi {
#endif

typedef struct ICU4XLocaleDirectionality ICU4XLocaleDirectionality;
#ifdef __cplusplus
} // namespace capi
#endif
#include "ICU4XDataProvider.h"
#include "diplomat_result_box_ICU4XLocaleDirectionality_ICU4XError.h"
#include "ICU4XLocaleExpander.h"
#include "ICU4XLocale.h"
#include "ICU4XLocaleDirection.h"
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif

diplomat_result_box_ICU4XLocaleDirectionality_ICU4XError ICU4XLocaleDirectionality_create(const ICU4XDataProvider* provider);

diplomat_result_box_ICU4XLocaleDirectionality_ICU4XError ICU4XLocaleDirectionality_create_with_expander(const ICU4XDataProvider* provider, const ICU4XLocaleExpander* expander);

ICU4XLocaleDirection ICU4XLocaleDirectionality_get(const ICU4XLocaleDirectionality* self, const ICU4XLocale* locale);

bool ICU4XLocaleDirectionality_is_left_to_right(const ICU4XLocaleDirectionality* self, const ICU4XLocale* locale);

bool ICU4XLocaleDirectionality_is_right_to_left(const ICU4XLocaleDirectionality* self, const ICU4XLocale* locale);
void ICU4XLocaleDirectionality_destroy(ICU4XLocaleDirectionality* self);

#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif