Type:
Module
A mixin that provides methods for parsing C struct and prototype signatures.
Example
1 2 3 4 5 6 7 | require 'fiddle/import' include Fiddle::CParser #=> Object parse_ctype( 'int increment(int)' ) #=> ["increment", Fiddle::TYPE_INT, [Fiddle::TYPE_INT]] |