]> andersk Git - splint.git/blame - test/manual/null.c
Fixes for win32
[splint.git] / test / manual / null.c
CommitLineData
77970e15 1char firstChar1 (/*@null@*/ char *s)
2{
3 return *s;
4}
5
6char firstChar2 (/*@null@*/ char *s)
7{
8 if (s == NULL) return '\0';
9 return *s;
10}
This page took 0.057836 seconds and 5 git commands to generate.