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                 220 src/struct.c       CMDTAB *t = NULL;
t                 223 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
t                 224 src/struct.c           if(code == t->cmd->code) {
t                 225 src/struct.c               ptr = t->cmd->ptr;
t                 237 src/struct.c       CMDTAB *t = NULL;
t                 240 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
t                 241 src/struct.c           if(code == t->cmd->code) {
t                 242 src/struct.c               type = t->cmd->type;
t                 254 src/struct.c       CMDTAB *t = NULL;
t                 257 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
t                 258 src/struct.c           if(code == t->cmd->code) {
t                 259 src/struct.c               cmd = t->cmd->name;
t                 296 src/struct.c       CMDTAB *t = NULL;
t                 299 src/struct.c       for(t = cmdtab[HASH_CODE][hash_code(code)]; t != NULL; t = t->next) {
t                 300 src/struct.c           if(code == t->cmd->code) {
t                 301 src/struct.c               wl = t->cmd->wordlen;
t                 108 src/word.c         char *t = NULL;
t                 115 src/word.c         t = strrev(s);
t                 117 src/word.c         return t;