-4
votes
0answers
64 views

Static functions in C? [closed]

Please some explain me Why, When, Where we use Static functions in C. Give some example program to proof your answers. Advantages of Static function in C.
1
vote
1answer
57 views

Extending an API in C in a flexible and unobtrusive way

I'm trying to add some additional functionality to an API. However, I'd like these additional functions to be in an external library of mine and not mixed with the original library's code. The ...