Method: BOAST::Int#decl_ffi

Defined in:
lib/BOAST/Language/DataTypes.rb

#decl_ffiObject



253
254
255
256
257
258
259
# File 'lib/BOAST/Language/DataTypes.rb', line 253

def decl_ffi
  t = ""
  t << "u" unless @signed
  t << "int"
  t << "#{@size*8}" if @size
  return t.to_sym
end