/opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/fiddle
NameSizeModeActions
closure.rb12410644editdlrm
cparser.rb62000644editdlrm
function.rb3230644editdlrm
import.rb90250644editdlrm
pack.rb32070644editdlrm
struct.rb65010644editdlrm
types.rb19420644editdlrm
value.rb29360644editdlrm
Edit: /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/fiddle/function.rb (323B)
# frozen_string_literal: true module Fiddle class Function # The ABI of the Function. attr_reader :abi # The address of this function attr_reader :ptr # The name of this function attr_reader :name # The integer memory location of this function def to_i ptr.to_i end end end