Bump to 1.14.1
[platform/upstream/augeas.git] / lib / unigbrk.in.h
1 /* Grapheme cluster breaks in Unicode strings.
2    Copyright (C) 2010-2016 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@cs.stanford.edu>, 2010.
4
5    This program is free software: you can redistribute it and/or modify it
6    under the terms of the GNU Lesser General Public License as published
7    by the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
14
15    You should have received a copy of the GNU Lesser General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _UNIGBRK_H
19 #define _UNIGBRK_H
20
21 /* Get bool.  */
22 #include <stdbool.h>
23
24 /* Get size_t. */
25 #include <stddef.h>
26
27 #include "unitypes.h"
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /* ========================================================================= */
34
35 /* Property defined in Unicode Standard Annex #29, section "Grapheme Cluster
36    Boundaries"
37    <http://unicode.org/reports/tr29/#Grapheme_Cluster_Boundaries> */
38
39 /* Possible values of the Grapheme_Cluster_Break property.
40    This enumeration may be extended in the future.  */
41 enum
42 {
43   GBP_OTHER        = 0,
44   GBP_CR           = 1,
45   GBP_LF           = 2,
46   GBP_CONTROL      = 3,
47   GBP_EXTEND       = 4,
48   GBP_PREPEND      = 5,
49   GBP_SPACINGMARK  = 6,
50   GBP_L            = 7,
51   GBP_V            = 8,
52   GBP_T            = 9,
53   GBP_LV           = 10,
54   GBP_LVT          = 11,
55   GBP_RI           = 12
56 };
57
58 /* Return the Grapheme_Cluster_Break property of a Unicode character. */
59 extern int
60        uc_graphemeclusterbreak_property (ucs4_t uc)
61        _UC_ATTRIBUTE_CONST;
62
63 /* ========================================================================= */
64
65 /* Grapheme cluster breaks.  */
66
67 /* Returns true if there is a grapheme cluster boundary between Unicode code
68    points A and B.  A "grapheme cluster" is an approximation to a
69    user-perceived character, which sometimes corresponds to multiple code
70    points.  For example, an English letter followed by an acute accent can be
71    expressed as two consecutive Unicode code points, but it is perceived by the
72    user as only a single character and therefore constitutes a single grapheme
73    cluster.
74
75    Implements extended (not legacy) grapheme cluster rules, because UAX #29
76    indicates that they are preferred.
77
78    Use A == 0 or B == 0 to indicate start of text or end of text,
79    respectively. */
80 extern bool
81        uc_is_grapheme_break (ucs4_t a, ucs4_t b)
82        _UC_ATTRIBUTE_CONST;
83
84 /* Returns the start of the next grapheme cluster following S, or NULL if the
85    end of the string has been reached. */
86 extern const uint8_t *
87        u8_grapheme_next (const uint8_t *s, const uint8_t *end)
88        _UC_ATTRIBUTE_PURE;
89 extern const uint16_t *
90        u16_grapheme_next (const uint16_t *s, const uint16_t *end)
91        _UC_ATTRIBUTE_PURE;
92 extern const uint32_t *
93        u32_grapheme_next (const uint32_t *s, const uint32_t *end)
94        _UC_ATTRIBUTE_PURE;
95
96 /* Returns the start of the previous grapheme cluster before S, or NULL if the
97    start of the string has been reached. */
98 extern const uint8_t *
99        u8_grapheme_prev (const uint8_t *s, const uint8_t *start)
100        _UC_ATTRIBUTE_PURE;
101 extern const uint16_t *
102        u16_grapheme_prev (const uint16_t *s, const uint16_t *start)
103        _UC_ATTRIBUTE_PURE;
104 extern const uint32_t *
105        u32_grapheme_prev (const uint32_t *s, const uint32_t *start)
106        _UC_ATTRIBUTE_PURE;
107
108 /* Determine the grapheme cluster boundaries in S, and store the result at
109    p[0..n-1].  p[i] = 1 means that a new grapheme cluster begins at s[i].  p[i]
110    = 0 means that s[i-1] and s[i] are part of the same grapheme cluster.  p[0]
111    will always be 1.
112  */
113 extern void
114        u8_grapheme_breaks (const uint8_t *s, size_t n, char *p);
115 extern void
116        u16_grapheme_breaks (const uint16_t *s, size_t n, char *p);
117 extern void
118        u32_grapheme_breaks (const uint32_t *s, size_t n, char *p);
119 extern void
120        ulc_grapheme_breaks (const char *s, size_t n, char *p);
121
122 /* ========================================================================= */
123
124 #ifdef __cplusplus
125 }
126 #endif
127
128
129 #endif /* _UNIGBRK_H */