Home | History | Annotate | Download | only in stdio

Lines Matching defs:esc

64  *	that starts in *sp, is escaped by the escape character esc.
67 isescaped(const char *sp, const char *p, int esc)
76 if (esc == '\0')
80 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
102 char esc, con, nl, com;
113 esc = str[0];
135 if (*cp == com && !isescaped(ptr, cp, esc)) {
152 if (*cp == con && !isescaped(ptr, cp, esc)) {
181 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
182 strchr(buf, esc) != NULL) {
187 while (cp[0] != '\0' && cp[0] != esc)
197 if (cp[1] == esc)
199 if (cp[1] != com && cp[1] != con && cp[1] != esc)