split_arguments(arguments, sep=',')private
No documentation available.
# File ext/fiddle/lib/fiddle/cparser.rb, line 187
def split_arguments(arguments, sep=',')
return [] if arguments.strip == 'void'
arguments.scan(/([\w\*\s]+\(\*\w*\)\(.*?\)|[\w\*\s\[\]]+)(?:#{sep}\s*|$)/).collect {|m| m[0]}
end