PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs.
Is there anything like it that will tokenize/parse C and give you a chance to write a script to do something with that information?
|
PPI and Perl::Critic allow programmers to detect certain things in the syntax of their Perl programs. Is there anything like it that will tokenize/parse C and give you a chance to write a script to do something with that information? | ||||
|
feedback
|
|
C related programs:
List of tools for Static Code Analysis for C (more than the list above) | |||
|
feedback
|
|
There is an open source program called Splint:
| |||
|
feedback
|
|
If I remember correctly, that's what lint does. | |||||||||
feedback
|
|
It's a little off topic, but on the subject of valuable code analyzers for C is valgrind to catch dodgy memory management. | |||
|
feedback
|