Flowdock
method

split_arguments

Importance_0
v2_5_5 - Show latest stable - 0 notes - Class: CParser
split_arguments(arguments, sep=',') private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# 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
Register or log in to add new notes.