t 28 src/cmem.c char *t = malloc_chk(strlen(s) + 1, tag); t 29 src/cmem.c strcpy(t, s); t 30 src/cmem.c return t; t 36 src/cmem.c char *t = NULL; t 39 src/cmem.c t = malloc_chk(len + 1, tag); t 40 src/cmem.c strncpy(t, s, len); t 41 src/cmem.c t[len] = '\0'; t 43 src/cmem.c t = strdup_chk(s, tag); t 45 src/cmem.c return t; t 73 src/cmem.c char *t = strdup_chk(s, "strrev.t"); t 74 src/cmem.c int l = strlen(t); t 77 src/cmem.c char tmp = t[i]; t 78 src/cmem.c t[i] = t[l-1-i]; t 79 src/cmem.c t[l-1-i] = tmp; t 81 src/cmem.c return t; t 190 src/struct.c CMDTAB *t = NULL; t 193 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 194 src/struct.c if(code == t->cmd->code) { t 195 src/struct.c ptr = t->cmd->ptr; t 207 src/struct.c CMDTAB *t = NULL; t 210 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 211 src/struct.c if(code == t->cmd->code) { t 212 src/struct.c type = t->cmd->type; t 224 src/struct.c CMDTAB *t = NULL; t 227 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 228 src/struct.c if(code == t->cmd->code) { t 229 src/struct.c cmd = t->cmd->name; t 108 src/word.c char *t = NULL; t 115 src/word.c t = strrev(s); t 117 src/word.c return t;