Files
learning_c/ch_04/static_demo/number.h
T
2020-11-04 21:20:39 -05:00

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);