# File lib/ruby_to_ansi_c.rb, line 192
  def process_args(exp)
    args = []

    until exp.empty? do
      arg = exp.shift

#       p arg
#       p arg.sexp_type
#       p arg.first
#       p self.class
#       p arg.sexp_type.class
#       p TypeMap.methods.sort
#       p c_type(arg.sexp_type)

      args << "#{self.class.c_type(arg.sexp_type)} #{arg.first}"
    end

    return "(#{args.join ', '})"
  end