is_sudo_group method

int is_sudo_group(
  1. Pointer<Bool> result
)

Determine user is a group member, which eligable to execute program as root by calling sudo command.

This method requires sudo bundled in OS already. Normally, majority of UNIX or liked system.

Implementation

int is_sudo_group(
  ffi.Pointer<ffi.Bool> result,
) {
  return _is_sudo_group(
    result,
  );
}