strlen method

int strlen(
  1. Pointer<Char> __s
)

Implementation

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