strlen method

int strlen(
  1. Pointer<Int8> _Str
)

Implementation

int strlen(
  ffi.Pointer<ffi.Int8> _Str,
) {
  return _strlen(
    _Str,
  );
}