| 294 | } |
| 295 | |
| 296 | static int is_multipart_boundary(struct mailinfo *mi, const struct strbuf *line) |
| 297 | { |
| 298 | struct strbuf *content_top = *(mi->content_top); |
| 299 | |
| 300 | return ((content_top->len <= line->len) && |
| 301 | !memcmp(line->buf, content_top->buf, content_top->len)); |
| 302 | } |
| 303 | |
| 304 | static void cleanup_subject(struct mailinfo *mi, struct strbuf *subject) |
| 305 | { |
no outgoing calls
no test coverage detected