diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-12 23:34:19 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-12 23:34:19 +0200 |
commit | db56fe305d64040bdba221f10b29139a691d58fd (patch) | |
tree | 1ad039f11bbd54da30c46d267db02a987a5784b9 | |
parent | db1ca2aaca8563fccb06b49442c7caac12a2582c (diff) |
Sort structs alphabetically
-rw-r--r-- | include/unicode/prop.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/unicode/prop.h b/include/unicode/prop.h index fb7680c..cf02a74 100644 --- a/include/unicode/prop.h +++ b/include/unicode/prop.h @@ -12,15 +12,15 @@ struct rview { size_t len; }; -struct ucctx { +struct tcctx { bool az_or_tr : 1; /* Azeri or Turkish */ - bool cap_eszett : 1; /* Use capital eszett */ - bool lt_after_i : 1; /* After ‘i’ in Lithuanian */ + bool lt_after_i : 1; /* After ‘i’ in Lithuanian */ }; -struct tcctx { +struct ucctx { bool az_or_tr : 1; /* Azeri or Turkish */ - bool lt_after_i : 1; /* After ‘i’ in Lithuanian */ + bool cap_eszett : 1; /* Use capital eszett */ + bool lt_after_i : 1; /* After ‘i’ in Lithuanian */ }; enum uprop_bpt { |