ICU4X
International Components for Unicode
Loading...
Searching...
No Matches
Decomposed.d.hpp
Go to the documentation of this file.
1#ifndef icu4x_Decomposed_D_HPP
2#define icu4x_Decomposed_D_HPP
3
4#include <stdio.h>
5#include <stdint.h>
6#include <stddef.h>
7#include <stdbool.h>
8#include <memory>
9#include <functional>
10#include <optional>
11#include <cstdlib>
13
14
15namespace icu4x {
16namespace capi {
17 struct Decomposed {
18 char32_t first;
19 char32_t second;
20 };
21
22 typedef struct Decomposed_option {union { Decomposed ok; }; bool is_ok; } Decomposed_option;
23} // namespace capi
24} // namespace
25
26
27namespace icu4x {
35struct Decomposed {
36 char32_t first;
37 char32_t second;
38
39 inline icu4x::capi::Decomposed AsFFI() const;
40 inline static icu4x::Decomposed FromFFI(icu4x::capi::Decomposed c_struct);
41};
42
43} // namespace
44#endif // icu4x_Decomposed_D_HPP
Definition Bidi.d.hpp:14
Definition Decomposed.d.hpp:35
char32_t first
Definition Decomposed.d.hpp:36
char32_t second
Definition Decomposed.d.hpp:37