strncasecmp_l method

int strncasecmp_l(
  1. Pointer<Char> __s1,
  2. Pointer<Char> __s2,
  3. int __n,
  4. locale_t __loc,
)

Implementation

int strncasecmp_l(
  ffi.Pointer<ffi.Char> __s1,
  ffi.Pointer<ffi.Char> __s2,
  int __n,
  locale_t __loc,
) {
  return _strncasecmp_l(
    __s1,
    __s2,
    __n,
    __loc,
  );
}