mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-06 02:55:49 +03:00
077a8058c3
This enables us to display email subject fields with non-ASCII characters in Mail :^)
16 lines
246 B
C++
16 lines
246 B
C++
/*
|
|
* Copyright (c) 2023, Valtteri Koskivuori <vkoskiv@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/ByteBuffer.h>
|
|
|
|
namespace IMAP {
|
|
|
|
ErrorOr<ByteBuffer> decode_rfc2047_encoded_words(StringView input);
|
|
|
|
}
|