Sometimes function need to call each other like this:
void ping() { //... pong(); //... }
void pong() { //... ping(); //... }