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,
  );
}