ユニットテストを有効な状態に
[YACASL2.git] / test / unit / print_cmdtype_code / print_cmdtype_code.c
1 #include "casl2.h"
2 int main(){
3     puts("== CMDTYPE_CODE TABLE ==");
4     create_cmdtype_code();
5     print_cmdtype_code();
6     free_cmdtype_code();
7     if(cerrno != 0) {
8         printf("\terror - %d: %s\n", cerrno, cerrmsg);
9         freecerr();
10         exit(-1);
11     }
12     return 0;
13 }