クロック周波数の定義を追加
[YACASL2.git] / test / utest / print_code_type / print_code_type.c
1 #include "casl2.h"
2 int main(){
3     puts("== CODE_TYPE TABLE ==");
4     create_code_type();
5     print_code_type();
6     free_code_type();
7     if(cerrno != 0) {
8         printf("\terror - %d: %s\n", cerrno, cerrmsg);
9         freecerr();
10         exit(-1);
11     }
12     return 0;
13 }