getopt method

int getopt(
  1. int __argc,
  2. Pointer<Pointer<Char>> arg1,
  3. Pointer<Char> arg2
)

Implementation

int getopt(
  int __argc,
  ffi.Pointer<ffi.Pointer<ffi.Char>> arg1,
  ffi.Pointer<ffi.Char> arg2,
) {
  return _getopt(__argc, arg1, arg2);
}