libusb_error_name method

Pointer<Int8> libusb_error_name(
  1. int errcode
)

Implementation

ffi.Pointer<ffi.Int8> libusb_error_name(
  int errcode,
) {
  return (_libusb_error_name ??=
      _dylib.lookupFunction<_c_libusb_error_name, _dart_libusb_error_name>(
          'libusb_error_name'))(
    errcode,
  );
}