| 280 | } |
| 281 | |
| 282 | static 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 | |
| 291 | static int last_line_length(struct strbuf *sb) |
| 292 | { |
no test coverage detected