code              115 include/struct.h     WORD code;                  /**<命令コード */
code              198 include/struct.h const void (*getcmdptr(WORD code));
code              203 include/struct.h CMDTYPE getcmdtype(WORD code);
code              208 include/struct.h char *getcmdname(WORD code);
code               83 src/struct.c   unsigned hash_code(WORD code);
code              124 src/struct.c               hashval = hash_code(comet2cmd[i].code);
code              161 src/struct.c               w = p->cmd->code;
code              171 src/struct.c   unsigned hash_code(WORD code)
code              179 src/struct.c       keys[0]->val.i = (int)(code >> 8);
code              188 src/struct.c   const void (*getcmdptr(WORD code))
code              193 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
code              194 src/struct.c           if(code == t->cmd->code) {
code              205 src/struct.c   CMDTYPE getcmdtype(WORD code)
code              210 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
code              211 src/struct.c           if(code == t->cmd->code) {
code              222 src/struct.c   char *getcmdname(WORD code)
code              227 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
code              228 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);