strlen function

int strlen(
  1. Pointer<Int8> __s
)

Return the length of S.

Implementation

int strlen(
  ffi.Pointer<ffi.Int8> __s,
) {
  _strlen ??= Libc()
      .dylib
      .lookupFunction<ffi.Uint64 Function(ffi.Pointer<ffi.Int8>), _dart_strlen>(
          'strlen');
  return _strlen!(
    __s,
  );
}