Searched refs:has_trailing_escape (Results 1 – 3 of 3) sorted by relevance
216 if ((l = t - ibufp) < 2 || !has_trailing_escape(ibufp, ibufp + l - 1)) { in get_extended_line()235 if (n < 2 || !has_trailing_escape(cvbuf, cvbuf + l - 1)) in get_extended_line()
213 int has_trailing_escape(char *, char *);
1286 has_trailing_escape(char *s, char *t) in has_trailing_escape() function1288 return (s == t || *(t - 1) != '\\') ? 0 : !has_trailing_escape(s, t - 1); in has_trailing_escape()