]> andersk Git - splint.git/blob - src/constraintOutput.c
Added files
[splint.git] / src / constraintOutput.c
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
13 void ConPrint (char * string, fileloc loc)
14 {
15   if (context_getFlag (testingFlag ) )
16     {
17       voptgenerror (testingFlag, string, loc);
18     }
19   
20 }
21
22 void BPRINTF (char * string)
23 {
24  if (context_getFlag (testingFlag ) )
25    {
26      DPRINTF( (message ("%s", string) ) );
27    }
28 }
This page took 0.121645 seconds and 5 git commands to generate.