Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to decode q-encoding in C?

Is there any library for q-encoding? I need to decode some q-encoded text, such as:

**Subject: =?iso-8859-1?Q?=A1Hola,_se=F1or!?=**
like image 903
iyasar Avatar asked Oct 09 '22 02:10

iyasar


1 Answers

GNU Mailutils libmailutils is one example of such library.

"Q"-encoding is specified by RFC 2047 so using it as a search term gives you other relevant results.

like image 193
laalto Avatar answered Oct 13 '22 10:10

laalto