config root man

Current Path : /usr/local/share/examples/ruby18/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/examples/ruby18/mkproto.rb

$/ = nil
while line = gets()
  if /^((void|VALUE|int|char *\*|ID|struct [\w_]+ *\*|st_table *\*) *)?\n([\w\d_]+)\(.*\)\n\s*((.+;\n)*)\{/ =~ line
    line = $'
    printf "%s %s(", $2, $3
    args = []
    for arg in $4.split(/;\n\s*/)
      arg.gsub!(/ +/, ' ')
      if arg =~ /,/
	if arg =~ /(([^*]+) *\** *[\w\d_]+),/
	  type = $2.strip
	  args.push $1.strip
	  arg = $'
	else
	  type = ""
	end
	while arg.sub!(/(\** *[\w\d_]+)(,|$)/, "") && $~
	  args.push type + " " + $1.strip
	end
      else
	args.push arg.strip
      end
    end
    printf "%s);\n", args.join(', ')
    redo
  end
end

Man Man