mbrlen method

int mbrlen(
  1. Pointer<Char> _Ch,
  2. int _SizeInBytes,
  3. Pointer<mbstate_t> _State
)

Implementation

int mbrlen(
  ffi.Pointer<ffi.Char> _Ch,
  int _SizeInBytes,
  ffi.Pointer<mbstate_t> _State,
) {
  return _mbrlen(
    _Ch,
    _SizeInBytes,
    _State,
  );
}