strcmp method

int strcmp(
  1. Pointer<Char> __s1,
  2. Pointer<Char> __s2
)

Implementation

int strcmp(
  ffi.Pointer<ffi.Char> __s1,
  ffi.Pointer<ffi.Char> __s2,
) {
  return _strcmp(
    __s1,
    __s2,
  );
}