diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-04-15 14:14:00 +0200 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-04-15 14:14:00 +0200 |
commit | a5acb3fe6d165fd2731e13da1ee1bb098e5f3c8e (patch) | |
tree | 22d41f1be803a22812c831d9034ae56191b058e1 | |
parent | 6713c56fee21a549ff8a3494bbb52da9234a00aa (diff) |
Add clang-format tags
-rw-r--r-- | include/unicode/prop.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/unicode/prop.h b/include/unicode/prop.h index 419908e..d2db777 100644 --- a/include/unicode/prop.h +++ b/include/unicode/prop.h @@ -14,6 +14,8 @@ struct rview { size_t len; }; +/* clang-format off */ + struct lcctx { bool az_or_tr : 1; /* Azeri or Turkish */ bool lt : 1; /* Lithuanian */ @@ -35,10 +37,12 @@ struct ucctx { bool az_or_tr : 1; /* Azeri or Turkish */ bool lt : 1; /* Lithuanian */ - bool ẞ : 1; /* Uppercase ‘ß’ into ‘ẞ’ (instead of ‘SS’) */ + bool ẞ : 1; /* Uppercase ‘ß’ into ‘ẞ’ (instead of ‘SS’) */ bool after_i : 1; /* After ‘i’ */ }; +/* clang-format off */ + enum uprop_age : uint_least16_t { AGE_NA = 0, /* Not Assigned */ AGE_V1_1 = (1 << 8) | 1, |