aboutsummaryrefslogtreecommitdiff
path: root/main/vapi/icu-uc.vapi
blob: 12cc058781985d0f8e0b0d62d711ffa6470142ab (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
namespace Unicode {
  [CCode (cprefix = "UCHAR_", cheader_filename = "unicode/uchar.h")]
  enum Property {
    EMOJI,
    EMOJI_PRESENTATION,
    EMOJI_MODIFIER,
    EMOJI_MODIFIER_BASE,
  }

  [CCode (cname = "u_hasBinaryProperty", cheader_filename = "unicode/uchar.h")]
  bool has_binary_property(unichar c, Property p);
}