2
votes
Variable declarations in header files - static or not?
The static will mean you get one copy per file, but unlike others have said it's perfectly legal to do so. You can easily test this with a small code sample:
test.h:
static …
