1 /*
2  *  MISC.H
3  *
4  *  Released to the public domain.
5  *
6  *  Prototypes for MISC.C.
7  */
8 
9 #ifndef __MISC_H__
10 #define __MISC_H__
11 
12 void change_curr_addr(void);
13 void change_nodelist(void);
14 void change_username(void);
15 void set_switch(void);
16 void show_help(void);
17 int handle_rot(int c);
18 void sel_chs(void);
19 int sel_group(void);
20 
21 #endif
22