strlen method

int strlen(
  1. Pointer<Int8> _Str
)

Implementation

int strlen(
  ffi.Pointer<ffi.Int8> _Str,
) {
  return (_strlen ??=
      _dylib.lookupFunction<_c_strlen, _dart_strlen>('strlen'))(
    _Str,
  );
}