I already read a lot of posts and articles all over the net, but I couldn\'t find a definite answer about this.
I have some functions with similar purposes that I wa
The classic C way of doing this, which seems to be what you want, is to put the public function declarations in a header file, and all the implementation in source file, making the variables and non-public functions static. Otherwise just implement it as a class - I think you are making a bit of a mountain out of a molehill here.