9635beb36bb22f6eba943f87a73195b12647f26c
[YACASL2.git] / test / unit / print_code_type / print_code_type.c
1 #include "casl2.h"
2 #include "cerr.h"
3
4 int main()
5 {
6     puts("== CODE_TYPE TABLE ==");
7     create_code_type();
8     print_code_type();
9     free_code_type();
10     if(cerrno != 0) {
11         printf("\terror - %d: %s\n", cerrno, cerrmsg);
12         freecerr();
13         exit(-1);
14     }
15     return 0;
16 }