]> andersk Git - splint.git/blame - src/constraintOutput.c
Added files
[splint.git] / src / constraintOutput.c
CommitLineData
3aaedf88 1/*
2** constraintOutput.c
3*/
4
5# include "lclintMacros.nf"
6# include "basic.h"
7# include "portab.h"
8
9#define testingFlag FLG_BUFFEROVERFLOW
10//FLG_BUFF
11//FLG_NULLTERMINATED
12
13void ConPrint (char * string, fileloc loc)
14{
15 if (context_getFlag (testingFlag ) )
16 {
17 voptgenerror (testingFlag, string, loc);
18 }
19
20}
21
22void BPRINTF (char * string)
23{
24 if (context_getFlag (testingFlag ) )
25 {
26 DPRINTF( (message ("%s", string) ) );
27 }
28}
This page took 0.14576 seconds and 5 git commands to generate.