code 118 include/struct.h WORD code; /**<命令コード */ code 221 include/struct.h const void (*getcmdptr(WORD code)); code 226 include/struct.h CMDTYPE getcmdtype(WORD code); code 231 include/struct.h char *getcmdname(WORD code); code 84 src/struct.c unsigned hash_code(WORD code); code 135 src/struct.c hashval = hash_code(comet2cmd[i].code); code 172 src/struct.c w = p->cmd->code; code 182 src/struct.c unsigned hash_code(WORD code) code 190 src/struct.c keys[0]->val.i = (int)(code >> 8); code 199 src/struct.c const void (*getcmdptr(WORD code)) code 204 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 205 src/struct.c if(code == t->cmd->code) { code 216 src/struct.c CMDTYPE getcmdtype(WORD code) code 221 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 222 src/struct.c if(code == t->cmd->code) { code 233 src/struct.c char *getcmdname(WORD code) code 238 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 239 src/struct.c if(code == t->cmd->code) { code 9 test/unit/getcmdcode/cmd.c WORD code; code 32 test/unit/getcmdcode/cmd.c code = getcmdcode(cmdcodelist[i].cmd, cmdcodelist[i].type); code 33 test/unit/getcmdcode/cmd.c printf("%s:0%02o ---> #%04X\n", cmdcodelist[i].cmd, cmdcodelist[i].type, code); code 41 test/unit/setcerr/cmd.c int code[] = { code 51 test/unit/setcerr/cmd.c for(j = 0; j < ARRAYSIZE(code); j++) { code 52 test/unit/setcerr/cmd.c setcerr(code[j], str[i]); code 53 test/unit/setcerr/cmd.c printf("%d: %s - %d\t%s\n", code[j], str[i], cerr->num, cerr->msg);