Introduction
Introduction Statistics Contact Development Disclaimer Help
Sort prototypes in grapheme.h alphabetically - libgrapheme - unicode string lib…
git clone git://git.suckless.org/libgrapheme
Log
Files
Refs
README
LICENSE
---
commit 6d0595242a027c1fcb06136e632f6d727388c4ec
parent fad432f65f9011175f4fe24d4045ba0d42bdc55e
Author: Laslo Hunhold <[email protected]>
Date: Sat, 17 Sep 2022 01:13:59 +0200
Sort prototypes in grapheme.h alphabetically
Signed-off-by: Laslo Hunhold <[email protected]>
Diffstat:
M grapheme.h | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
---
diff --git a/grapheme.h b/grapheme.h
@@ -15,8 +15,19 @@ typedef struct grapheme_internal_segmentation_state {
#define GRAPHEME_INVALID_CODEPOINT UINT32_C(0xFFFD)
+size_t grapheme_decode_utf8(const char *, size_t, uint_least32_t *);
+size_t grapheme_encode_utf8(uint_least32_t, char *, size_t);
+
bool grapheme_is_character_break(uint_least32_t, uint_least32_t, GRAPHEME_STAT…
+bool grapheme_is_lowercase(const uint_least32_t *, size_t, size_t *);
+bool grapheme_is_uppercase(const uint_least32_t *, size_t, size_t *);
+bool grapheme_is_titlecase(const uint_least32_t *, size_t, size_t *);
+
+bool grapheme_is_lowercase_utf8(const char *, size_t, size_t *);
+bool grapheme_is_uppercase_utf8(const char *, size_t, size_t *);
+bool grapheme_is_titlecase_utf8(const char *, size_t, size_t *);
+
size_t grapheme_next_character_break(const uint_least32_t *, size_t);
size_t grapheme_next_line_break(const uint_least32_t *, size_t);
size_t grapheme_next_sentence_break(const uint_least32_t *, size_t);
@@ -27,23 +38,12 @@ size_t grapheme_next_line_break_utf8(const char *, size_t);
size_t grapheme_next_sentence_break_utf8(const char *, size_t);
size_t grapheme_next_word_break_utf8(const char *, size_t);
-size_t grapheme_to_uppercase(const uint_least32_t *, size_t, uint_least32_t *,…
size_t grapheme_to_lowercase(const uint_least32_t *, size_t, uint_least32_t *,…
+size_t grapheme_to_uppercase(const uint_least32_t *, size_t, uint_least32_t *,…
size_t grapheme_to_titlecase(const uint_least32_t *, size_t, uint_least32_t *,…
-size_t grapheme_to_uppercase_utf8(const char *, size_t, char *, size_t);
size_t grapheme_to_lowercase_utf8(const char *, size_t, char *, size_t);
+size_t grapheme_to_uppercase_utf8(const char *, size_t, char *, size_t);
size_t grapheme_to_titlecase_utf8(const char *, size_t, char *, size_t);
-bool grapheme_is_uppercase(const uint_least32_t *, size_t, size_t *);
-bool grapheme_is_lowercase(const uint_least32_t *, size_t, size_t *);
-bool grapheme_is_titlecase(const uint_least32_t *, size_t, size_t *);
-
-bool grapheme_is_uppercase_utf8(const char *, size_t, size_t *);
-bool grapheme_is_lowercase_utf8(const char *, size_t, size_t *);
-bool grapheme_is_titlecase_utf8(const char *, size_t, size_t *);
-
-size_t grapheme_decode_utf8(const char *, size_t, uint_least32_t *);
-size_t grapheme_encode_utf8(uint_least32_t, char *, size_t);
-
#endif /* GRAPHEME_H */
You are viewing proxied material from suckless.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.