I've come across some code that has a large static function in a header file and i'm just curious when it is/is not ok to do this. For example, if many .c
files include the header, why not just define the function non-static and link it in ?
Any advice or rules of thumb on when/when not to put static function definitions in header files in C would be appreciated,
thanks
Typically, static functions are functions needed in only one file. They are declared static to make that explicit by limiting their visibility. Declaring them in a header therefore is somewhat antithetical.
A static function in C is a function that has a scope that is limited to its object file. This means that the static function is only visible in its object file. A function can be declared as static function by placing the static keyword before the function name.
Unless you want the function to be inline , it is best to declare the function in the header and define it in a single source file and link it.
A header file is a file with extension . h which contains C function declarations and macro definitions to be shared between several source files.
Some ideas:
mylib123__foobar
, and #define foobar mylib123__foobar
in the header file, so this one seems a little iffy.)Perhaps the function is merely a wrapper for an external function, and the way the wrapper works might depend on compile-time options in the calling compilation unit. For example:
static int foobar(int x) { return real_foobar(COMPILETIME_PARAMETER, x); }
You might say just use macros, but what if foobar
needs to be called via a function pointer for the intended usage?
With that having been said...
In reality, the main reason people put static
functions in header files is usually based on some 10-years-outdated notion that it will improve performance, by permitting the compiler to inline the function or whatnot. Most people who do this have not done any measurement. Since modern compilers can compile the whole program as a unit if asked, and this theoretically results in a lot more possibilities for optimization, and since it's a questionable optimization to begin with, I'm really skeptical of placement of functions in headers for performance purposes.
This criticism especially applies the OP's example of "large" static functions in header files. There's almost no way a large function could benefit from inlining unless a constant argument value allows the compiler to eliminate 90% of the code or something. (For a real-world example of this extreme case, see some of the crazy inline function/macro definitions used in libavcodec
. :-)
As a rule of thumb, you should not be putting static functions in header files. In a one-off program, it probably won't hurt anything, aside from expanding the size of your code because you've got a redundant copy in each module. In a shared library, it could easily cause bugs because now part of your library is embedded in the library's callers, so version mismatches could easily happen.
If you've got some terribly, horribly time-critical function where the time spent making the function call matters, you might consider putting it in the header, but in that case (a) you probably want to declare it inline as well, and (b) you've already done all the other optimizations you can find.
In short, unless you know beyond the shadow of a doubt that you need your static function in a header file... you don't want a static function in a header file; you want a non-static function in a .c file with its header in the .h.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With