stbtt_CompareUTF8toUTF16_bigendian function

  1. @Native<Int Function(Pointer<Char>, Int, Pointer<Char>, Int)>(ffi.Pointer<ffi.Char>, ffi.Int, ffi.Pointer<ffi.Char>, ffi.Int)>()
int stbtt_CompareUTF8toUTF16_bigendian(
  1. Pointer<Char> s1,
  2. int len1,
  3. Pointer<Char> s2,
  4. int len2,
)

Implementation

@ffi.Native<
  ffi.Int Function(
    ffi.Pointer<ffi.Char>,
    ffi.Int,
    ffi.Pointer<ffi.Char>,
    ffi.Int,
  )
>()
external int stbtt_CompareUTF8toUTF16_bigendian(
  ffi.Pointer<ffi.Char> s1,
  int len1,
  ffi.Pointer<ffi.Char> s2,
  int len2,
);