strprefix method

int strprefix(
  1. Pointer<Char> s1,
  2. Pointer<Char> s2
)

Implementation

int strprefix(
  ffi.Pointer<ffi.Char> s1,
  ffi.Pointer<ffi.Char> s2,
) {
  return _strprefix(
    s1,
    s2,
  );
}