I have a .c file which contains many functions. I want only one to be called outside the file, this public function calls the private functions and the private function is also call each others.
void f() {
....
}
void g() {
f();
....
}
void public() {
f();
....
}