getopt method

int getopt(
  1. int ___argc,
  2. Pointer<Pointer<Int8>> ___argv,
  3. Pointer<Int8> __shortopts
)

Implementation

int getopt(
  int ___argc,
  ffi.Pointer<ffi.Pointer<ffi.Int8>> ___argv,
  ffi.Pointer<ffi.Int8> __shortopts,
) {
  return _getopt(
    ___argc,
    ___argv,
    __shortopts,
  );
}