13 lines
335 B
C
13 lines
335 B
C
|
|
|
|
/* Does something to a number. This function is static and
|
|
* will not be accessible outside of this file. Functions and
|
|
* variables defined as static are not visible to outside
|
|
* files. This function is private to this file and can only
|
|
* be called from within.
|
|
*/
|
|
static void do_something(void);
|
|
|
|
|
|
int Number_get_number(void);
|