ユニットテストで、コマンド表の内容をハッシュ表のまま出力するものと、ソートして出力するものに分離
[YACASL2.git] / test / unit / print_code_type / print_code_type.c
index 9635beb..51abfd3 100644 (file)
@@ -1,9 +1,33 @@
 #include "casl2.h"
 #include "cerr.h"
 
+int compare_code(const void *a, const void *b)
+{
+    return (**(const CMDCODEARRAY **)a).code - (**(const CMDCODEARRAY **)b).code;
+}
+
+/* 命令コードがキーのハッシュ表を表示する */
+void print_code_type()
+{
+    int i, j = 0;
+    CMDCODETAB *np;
+    CMDCODEARRAY **ar;
+    ar = malloc(sizeof(*ar) * cmdcodesize);
+    for(i = 0; i < cmdcodesize; i++) {
+        np = code_type[i];
+        while(np != NULL) {
+            ar[j++] = np->cca;
+            np = np->next;
+        }
+    }
+    qsort(ar, cmdcodesize, sizeof(*ar), (int (*)(const void*, const void*))compare_code);
+    for(i = 0; i < cmdcodesize; i++) {
+        fprintf(stdout, "#%04X\t0%02o\t%s\n", ar[i]->code, ar[i]->type, ar[i]->cmd);
+    }
+}
+
 int main()
 {
-    puts("== CODE_TYPE TABLE ==");
     create_code_type();
     print_code_type();
     free_code_type();