]> andersk Git - splint.git/blob - test/manual/null.c
noexpand always false.
[splint.git] / test / manual / null.c
1 char firstChar1 (/*@null@*/ char *s)
2 {
3   return *s;
4 }
5
6 char firstChar2 (/*@null@*/ char *s)
7 {
8   if (s == NULL) return '\0';
9   return *s;
10 }
This page took 0.039594 seconds and 5 git commands to generate.