Lines Matching refs:pt
91 const char *pt, *end;
113 for (pt = message; *pt; pt++) {
114 if (pt[0] == 'T' && pt[1] == '_') {
115 const char *next = strchr(pt, ' ');
116 if (!next || !*next) next = strchr(pt, '\0');
119 if (next-pt == 1 && next[1]
122 pt += 4;
126 if (!strncmp(entry->from, pt, strlen(entry->from))) {
128 pt = next;
132 } else if (end-pt >= 5 && pt[0] == '\'' && pt[1] == '\'' && pt[3]
133 && pt[4] == '\'' && pt[5] == '\'') {
134 fprintf(stderr, "\"%c\"", pt[3]);
135 pt += 5;
136 } else if (end-pt >= 3 && pt[0] == '\'' && pt[1] && pt[2] == '\'') {
137 fprintf(stderr, "\"%c\"", pt[1]);
138 pt += 3;
141 putc(*pt, stderr);