class RDoc::Parser::C

def find_modifiers(comment, meth_obj)

def find_modifiers(comment, meth_obj)
  if comment.sub!(/:nodoc:\s*^\s*\*?\s*$/m, '') or
     comment.sub!(/\A\/\*\s*:nodoc:\s*\*\/\Z/, '')
    meth_obj.document_self = false
  end
  if comment.sub!(/call-seq:(.*?)^\s*\*?\s*$/m, '') or
     comment.sub!(/\A\/\*\s*call-seq:(.*?)\*\/\Z/, '')
    seq = $1
    seq.gsub!(/^\s*\*\s*/, '')
    meth_obj.call_seq = seq
  end
end