HomeSort by: relevance | last modified time | path
    Searched defs:has_trailing_escape (Results 1 - 3 of 3) sorted by relevancy

  /src/bin/ed/
main.c 1326 /* has_trailing_escape: return the parity of escapes preceding a character
1329 has_trailing_escape(char *s, char *t) function in typeref:typename:int
1331 return (s == t || *(t - 1) != '\\') ? 0 : !has_trailing_escape(s, t - 1);
main.c 1326 /* has_trailing_escape: return the parity of escapes preceding a character
1329 has_trailing_escape(char *s, char *t) function in typeref:typename:int
1331 return (s == t || *(t - 1) != '\\') ? 0 : !has_trailing_escape(s, t - 1);
main.c 1326 /* has_trailing_escape: return the parity of escapes preceding a character
1329 has_trailing_escape(char *s, char *t) function in typeref:typename:int
1331 return (s == t || *(t - 1) != '\\') ? 0 : !has_trailing_escape(s, t - 1);

Completed in 142 milliseconds