Lines Matching refs:pt
94 const char *pt, *end;
116 for (pt = message; *pt; pt++) {
117 if (pt[0] == 'T' && pt[1] == '_') {
118 const char *next = strchr(pt, ' ');
119 if (!next || !*next) next = strchr(pt, '\0');
122 if (next-pt == 1 && next[1]
125 pt += 4;
129 if (!strncmp(entry->from, pt, strlen(entry->from))) {
131 pt = next;
135 } else if (end-pt >= 5 && pt[0] == '\'' && pt[1] == '\'' && pt[3]
136 && pt[4] == '\'' && pt[5] == '\'') {
137 fprintf(stderr, "\"%c\"", pt[3]);
138 pt += 5;
139 } else if (end-pt >= 3 && pt[0] == '\'' && pt[1] && pt[2] == '\'') {
140 fprintf(stderr, "\"%c\"", pt[1]);
141 pt += 3;
144 putc(*pt, stderr);