From db56fe305d64040bdba221f10b29139a691d58fd Mon Sep 17 00:00:00 2001 From: Thomas Voss Date: Fri, 12 Apr 2024 23:34:19 +0200 Subject: Sort structs alphabetically --- include/unicode/prop.h | 10 +++++----- 1 file 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 { -- cgit v1.2.3