The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
0.2:
	Changed to use Data::Flow, strips extern from function declarations.
	Can reliably restrict attention to some included file. 
	Cpp no longer ignored.
0.3:
	Will not bark if an argument to a function is an array.
	Minor misprint corrected. 
	Minimal documentation added.
0.4:
	Made new() use two arg version of bless to allow subclassing
	Made C::Scan a subclass of Data::Flow.
	Added new attributes defines_full, defines_args_full, and
           defines_no_args_full which use cpp -dM to get fully
           resolved #defines.
	Added $C::Scan::MACROS_ONLY which defaults to '-dM'
	Fixed up test.pl a bit to output to a file, and to give more
	   standard testing output.
	Fixed regexp bug that didn't allow macros with any space
	   between the end of the argument list and the beginning of
	   the body section, e.g. #define FOO_NAME(bar)((BAZ*) fooBAR(bar))->baz
	   which is a legal macro.
	Fixed regexp bug which did TOO minimal a match on some
	  argument lists.
0.5:
	Un-fixed bugfix in 0.4 that actually broke procesing
	Added '__const' to list of keywords (which was the appropriate
          way to fix the previously mentioned bug).
0.51:
	Fixed EMX 0.9d "feature" that include file names have \\ in them.
0.52:
	Add PREREQ_PM.  (Thanks to Michael G Schwern.)
	Handle glibc-style gcc int32_t declarations.
	  (Thanks to Michael G Schwern.)
	Change POSIX to Symbol.  (Thanks to Mike Blazer.)
	Include C9X keywords.