Home | History | Annotate | Download | only in Stdio

Lines Matching refs:esc

75  *  that starts in *sp, is escaped by the escape character esc.

78 isescaped(const char *sp, const char *p, int esc)
87 if (esc == '\0')
91 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
113 char esc, con, nl, com;
128 esc = str[0];
150 if (*cp == com && !isescaped(ptr, cp, esc)) {
167 if (*cp == con && !isescaped(ptr, cp, esc)) {
190 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
191 strchr(buf, esc) != NULL) {
196 while (cp[0] != '\0' && cp[0] != esc)
206 if (cp[1] == esc)
208 if (cp[1] != com && cp[1] != con && cp[1] != esc)