1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 00:57:44 +00:00

LibIMAP: Add quoted printable decoder

This is a very common encoding for e-mail. Gmail seems to encode all
HTML e-mail in it.
imap qp clang
This commit is contained in:
Luke 2021-07-21 01:05:19 +01:00 committed by Ali Mohammad Pur
parent cc0914ae58
commit c63913b633
3 changed files with 107 additions and 1 deletions

View file

@ -0,0 +1,15 @@
/*
* 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&);
}