blob: f468dea107b63345f0cd49428b3d747286f49971 (
plain)
1
2
3
4
5
6
7
8
9
|
module YARD::MRuby::Parser::C
class SourceParser < Parser
end
#
# Register all header files (.h) to be processed with the above HeaderParser
YARD::Parser::SourceParser.register_parser_type :source, SourceParser, 'c'
end
|