Home
last modified time | relevance | path

Searched refs:has_trailing_escape (Results 1 – 3 of 3) sorted by relevance

/freebsd/bin/ed/
H A Dio.c216 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()
H A Ded.h213 int has_trailing_escape(char *, char *);
H A Dmain.c1286 has_trailing_escape(char *s, char *t) in has_trailing_escape() function
1288 return (s == t || *(t - 1) != '\\') ? 0 : !has_trailing_escape(s, t - 1); in has_trailing_escape()