mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-06 03:02:55 +00:00
This is a very common encoding for e-mail. Gmail seems to encode all HTML e-mail in it. imap qp clang
15 lines
227 B
C++
15 lines
227 B
C++
/*
|
|
* Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
namespace IMAP {
|
|
|
|
ByteBuffer decode_quoted_printable(StringView const&);
|
|
|
|
}
|