MCPcopy Create free account
hub / github.com/git/git / needs_rfc822_quoting

Function needs_rfc822_quoting

pretty.c:282–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

280}
281
282static int needs_rfc822_quoting(const char *s, int len)
283{
284 int i;
285 for (i = 0; i < len; i++)
286 if (is_rfc822_special(s[i]))
287 return 1;
288 return 0;
289}
290
291static int last_line_length(struct strbuf *sb)
292{

Callers 1

pp_user_infoFunction · 0.85

Calls 1

is_rfc822_specialFunction · 0.85

Tested by

no test coverage detected