in reply to Re^2: Identifying functions in a c file and replacing with a keyword
in thread Identifying functions in a c file and replacing with a keyword

CPAN Testers shows a good number of successful installs on Windows, though there is an open bug for C::Scan on Windows. Perhaps that's the problem you're having? There is a fix suggested in the discussion below the bug report.

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name
  • Comment on Re^3: Identifying functions in a c file and replacing with a keyword