diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2022-01-08 11:53:52 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2022-01-08 11:53:52 +0100 |
commit | fa838e76139763f902c7d27cb9e1d393ed6a15e4 (patch) | |
tree | 7d0ae09775ea950056193eaa2ca93844299d46f1 /doc/uniwbrk.texi | |
parent | c78359d9542c86b972aac373efcf7bc7a8a560e5 (diff) | |
parent | 2959e59fab3bab834368adefd90bd4b1b094366b (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'doc/uniwbrk.texi')
-rw-r--r-- | doc/uniwbrk.texi | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/uniwbrk.texi b/doc/uniwbrk.texi index 64cbd11..70f551d 100644 --- a/doc/uniwbrk.texi +++ b/doc/uniwbrk.texi @@ -21,10 +21,10 @@ operations. The following functions determine the word breaks in a string. -@deftypefun void u8_wordbreaks (const uint8_t *@var{s}, size_t @var{n}, char *@var{p}) -@deftypefunx void u16_wordbreaks (const uint16_t *@var{s}, size_t @var{n}, char *@var{p}) -@deftypefunx void u32_wordbreaks (const uint32_t *@var{s}, size_t @var{n}, char *@var{p}) -@deftypefunx void ulc_wordbreaks (const char *@var{s}, size_t @var{n}, char *@var{p}) +@deftypefun void u8_wordbreaks (const@tie{}uint8_t@tie{}*@var{s}, size_t@tie{}@var{n}, char@tie{}*@var{p}) +@deftypefunx void u16_wordbreaks (const@tie{}uint16_t@tie{}*@var{s}, size_t@tie{}@var{n}, char@tie{}*@var{p}) +@deftypefunx void u32_wordbreaks (const@tie{}uint32_t@tie{}*@var{s}, size_t@tie{}@var{n}, char@tie{}*@var{p}) +@deftypefunx void ulc_wordbreaks (const@tie{}char@tie{}*@var{s}, size_t@tie{}@var{n}, char@tie{}*@var{p}) Determines the word break points in @var{s}, an array of @var{n} units, and stores the result at @code{@var{p}[0..@var{n}-1]}. @table @asis @@ -45,7 +45,7 @@ word break to be present at the beginning of the string (before This is a more low-level API. The word break property is a property defined in Unicode Standard Annex #29, section ``Word Boundaries'', see -@url{http://www.unicode.org/reports/tr29/#Word_Boundaries}.@texnl{} It is +@url{https://www.unicode.org/reports/tr29/#Word_Boundaries}.@texnl{} It is used for determining the word breaks in a string. The following are the possible values of the word break property. More values @@ -77,6 +77,6 @@ may be added in the future. The following function looks up the word break property of a character. -@deftypefun int uc_wordbreak_property (ucs4_t @var{uc}) +@deftypefun int uc_wordbreak_property (ucs4_t@tie{}@var{uc}) Returns the Word_Break property of a Unicode character. @end deftypefun |