t 48 src/cmem.c char *t = malloc_chk(strlen(s) + 1, tag); t 49 src/cmem.c strcpy(t, s); t 50 src/cmem.c return t; t 56 src/cmem.c char *t = NULL; t 59 src/cmem.c t = malloc_chk(len + 1, tag); t 60 src/cmem.c strncpy(t, s, len); t 61 src/cmem.c t[len] = '\0'; t 63 src/cmem.c t = strdup_chk(s, tag); t 65 src/cmem.c return t; t 93 src/cmem.c char *t = strdup_chk(s, "strrev.t"); t 94 src/cmem.c int l = strlen(t); t 97 src/cmem.c char tmp = t[i]; t 98 src/cmem.c t[i] = t[l-1-i]; t 99 src/cmem.c t[l-1-i] = tmp; t 101 src/cmem.c return t; t 201 src/struct.c CMDTAB *t = NULL; t 204 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 205 src/struct.c if(code == t->cmd->code) { t 206 src/struct.c ptr = t->cmd->ptr; t 218 src/struct.c CMDTAB *t = NULL; t 221 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 222 src/struct.c if(code == t->cmd->code) { t 223 src/struct.c type = t->cmd->type; t 235 src/struct.c CMDTAB *t = NULL; t 238 src/struct.c for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) { t 239 src/struct.c if(code == t->cmd->code) { t 240 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;