選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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