longjmp method

void longjmp(
  1. Pointer<_JBTYPE> _Buf,
  2. int _Value
)

Implementation

void longjmp(
  ffi.Pointer<_JBTYPE> _Buf,
  int _Value,
) {
  return _longjmp(
    _Buf,
    _Value,
  );
}