1 #ifndef COMMANDLIST_H 2 #define COMMANDLIST_H 3 4 void test_req(); 5 void test2_req(); 6 void help_req(); 7 void nvo_cmd_req(); 8 9 void commandlist() 10 { 11 // test_req(); 12 // test2_req(); 13 help_req(); 14 nvo_cmd_req(); 15 } 16 17 #endif 18 19