Tagged Questions

3
votes
4answers
924 views

How can I make splint ignore where I declare my variables?

Do you know how can I make splint ignore where I declare my variables? I know that the old school c tells you to declare variables right at the beginning in every function, but since I am a bad ...
0
votes
4answers
2k views

What is the differences about struct in C99 to ANSI-C?

This code doesn't appear to be correct in ANSI-C, but ok in C99 : struct a { int x; int y; } z; What are the differences about struct in C99 and ANSI-C ? Edit: I forgot the "a", my bad. This code ...