#include "ged.h" static int the_mode = N_MODE; int mode ( void ) { return ( int ) the_mode; } void change_mode_to ( int new_mode ) { the_mode = new_mode; if ( fep_selected () ) { clear_fep (); drawgraph (); } }