Line | Count | Source |
1 | /* Copyright (c) 2020 Dovecot authors, see the included COPYING file */ | |
2 | ||
3 | #include "lib.h" | |
4 | #include "str.h" | |
5 | #include "fuzzer.h" | |
6 | #include "imap-utf7.h" | |
7 | ||
8 | 2.35k | FUZZ_BEGIN_STR(const char *str) |
9 | 2.35k | { |
10 | 2.35k | string_t *dest = t_str_new(32); |
11 | ||
12 | 2.35k | imap_utf8_to_utf7(str, dest); |
13 | 2.35k | imap_utf7_to_utf8(str, dest); |
14 | 2.35k | } |
15 | 2.35k | FUZZ_END |