Function Scope
The scope of a function depends on its storage class:
- Static Functions
- External Functions
The scope of a function is either local to the file where it is defined (static) or globally available to any file in a project (external).
The scope of a function depends on its storage class:
The scope of a function is either local to the file where it is defined (static) or globally available to any file in a project (external).