]> andersk Git - splint.git/blame - test/nullterminatedtest/test1.c
Added the splint.org css sheet to the html version of the faq.
[splint.git] / test / nullterminatedtest / test1.c
CommitLineData
4e4880b7 1#include <stdio.h>
2
3void fcn1 (/*@nullterminated@*/ char *e);
4
5int main (){
6/*@unused@*/ char c[];
7
8char *d;
9
10 c[0] = '\0';
11fcn1(c);
12fcn1("hello");
13fcn1(d);
14
15return 0;
16}
This page took 0.172407 seconds and 5 git commands to generate.