DEBSOURCES
Skip Quicknav
sources / splint / 3.1.2.dfsg1-2 / test / manual / null.c
12345678910
char firstChar1 (/*@null@*/ char *s) { return *s; } char firstChar2 (/*@null@*/ char *s) { if (s == NULL) return '\0'; return *s; }