C/C++
pclint.txt
Associated article: A Report Generator for PC-Lint
Tags: C/C++
Published source code accompanying the article by Jon Zyzyck in which he presents a report generator that reads in all PC-Lint messages from all the files in the project, then displays them sorted by message number. Also see PCLINT.ZIP.
A Report Generator for PC-Lint by Jon Zyzyck Listing One #include <stdio.h> // This is a short file to show some examples of PC-Lint error/warning // detection and reporting of common errors /*lint +e716*/ #define MAX_BUF ( 1024 ) void ...


