strlen method

int strlen(
  1. Pointer<Char> s
)

Implementation

int strlen(
  ffi.Pointer<ffi.Char> s,
) {
  return _strlen(
    s,
  );
}