What is the point of making a function static in C?
|
|
Hiding it from other translations units: encapsulation. helper_file.c
main.c:
|
||||
|
|
|
pmg is spot on about encapsulation; beyond hiding the function from other translation units (or rather, because of it), making functions Because |
|||||
|
|
|
The Normally, when you create a function, the compiler generates cruft the linker can use to, well, link a function call to that function. If you use the static keyword, other functions within the same file can call this function (because it can be done without resorting to the linker), while the linker has no information letting other files access the function. |
|||||
|