您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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