Method: BOAST::Int#decl_ffi
- Defined in:
- lib/BOAST/Language/DataTypes.rb
#decl_ffi ⇒ Object
251 252 253 254 255 256 257 |
# File 'lib/BOAST/Language/DataTypes.rb', line 251 def decl_ffi t = "" t += "u" if not @signed t += "int" t += "#{@size*8}" if @size return t.to_sym end |