Sha256: d1381669e49651d0633e1f17a6bda58da5688e83585eb539bc4ac8b6f4c50109
Contents?: true
Size: 265 Bytes
Versions: 13
Compression:
Stored size: 265 Bytes
Contents
# frozen_string_literal: true require "ffi" module GirFFI # Library of libc functions. module LibC extend FFI::Library ffi_lib FFI::Library::LIBC attach_function :malloc, [:size_t], :pointer attach_function :free, [:pointer], :void end end
Version data entries
13 entries across 13 versions & 1 rubygems