You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cmdlist.h 212B

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