mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 17:12:43 +00:00 
			
		
		
		
	 c63913b633
			
		
	
	
		c63913b633
		
	
	
	
	
		
			
			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&);
 | |
| 
 | |
| }
 |