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 170B

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