code 118 include/struct.h WORD code; /**<命令コード */ code 224 include/struct.h bool code_gr_valid(WORD code); code 235 include/struct.h void (*getcmdptr(WORD code)); code 240 include/struct.h CMDTYPE getcmdtype(WORD code); code 245 include/struct.h char *getcmdname(WORD code); code 253 include/struct.h WORD code2cmdwordlen(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 201 src/struct.c unsigned hash_code(WORD code) code 209 src/struct.c keys[0]->val.i = (int)(code >> 8); code 218 src/struct.c void (*getcmdptr(WORD code)) code 223 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 224 src/struct.c if(code == t->cmd->code) { code 235 src/struct.c CMDTYPE getcmdtype(WORD code) code 240 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 241 src/struct.c if(code == t->cmd->code) { code 252 src/struct.c char *getcmdname(WORD code) code 257 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 258 src/struct.c if(code == t->cmd->code) { code 269 src/struct.c bool code_gr_valid(WORD code) code 272 src/struct.c CMDTYPE cmdtype = getcmdtype(code & 0xFF00); code 275 src/struct.c gr = (code & 0x00F0) >> 4; code 281 src/struct.c gr = code & 0x000F; code 294 src/struct.c WORD code2cmdwordlen(WORD code) code 299 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { code 300 src/struct.c if(code == t->cmd->code) {