libutf

UTF-8 library
git clone git://git.suckless.org/libutf
Log | Files | Refs | README | LICENSE

isalpharune.3 (798B)


      1 .Dd $Mdocdate$
      2 .Dt ISALPHARUNE 3
      3 .Os
      4 .Sh NAME
      5 .Nm isalpharune, islowerrune, isspacerune, istitlerune, isupperrune, isdigitrune
      6 .Nd Unicode rune classification
      7 .Sh SYNOPSIS
      8 .Ft int
      9 .Fn isalpharune "Rune r"
     10 .Ft int
     11 .Fn islowerrune "Rune r"
     12 .Ft int
     13 .Fn isspacerune "Rune r"
     14 .Ft int
     15 .Fn istitlerune "Rune r"
     16 .Ft int
     17 .Fn isupperrune "Rune r"
     18 .Ft int
     19 .Fn isdigitrune "Rune r"
     20 .Sh DESCRIPTION
     21 These functions classify Unicode runes according to their properties defined in the Unicode standard, analogously to
     22 .Xr ctype 3
     23 for ASCII.
     24 .Sh CONFORMING TO
     25 These functions are compatible with those defined in the Plan 9 C library, but are generated automatically from the Unicode $UNICODE Character Database, so classifications may differ.
     26 .Sh SEE ALSO
     27 .Xr ctype 3 ,
     28 .Xr rune 3 ,
     29 The Unicode $UNICODE Standard