strcoll_l method

int strcoll_l(
  1. Pointer<Char> __s1,
  2. Pointer<Char> __s2,
  3. locale_t __l
)

Implementation

int strcoll_l(
  ffi.Pointer<ffi.Char> __s1,
  ffi.Pointer<ffi.Char> __s2,
  locale_t __l,
) {
  return _strcoll_l(
    __s1,
    __s2,
    __l,
  );
}