comparison src/util.h @ 7821:ea8a104c053d

[gaim-migrate @ 8473] I think this probably would have helped me before I read the RFC committer: Tailor Script <tailor@pidgin.im>
author Mark Doliner <mark@kingant.net>
date Tue, 09 Dec 2003 16:56:25 +0000
parents 1363f91da9cc
children 7e1bb4deca24
comparison
equal deleted inserted replaced
7820:8e60ddc28a22 7821:ea8a104c053d
117 /**************************************************************************/ 117 /**************************************************************************/
118 /*@{*/ 118 /*@{*/
119 119
120 /** 120 /**
121 * Converts a MIME header field string back to its readable equivalent 121 * Converts a MIME header field string back to its readable equivalent
122 * according to RFC 2047. 122 * according to RFC 2047. Basically, a header is plain ASCII and can
123 * contain any number of sections called "encoded-words." The format
124 * of an encoded word is =?ISO-8859-1?Q?Keld_J=F8rn_Simonsen?=
125 * =? designates the beginning of the encoded-word
126 * ?= designates the end of the encoded-word
127 * ? segments the encoded word into three pieces. The first piece is
128 * the character set, the second peice is the encoding, and the
129 * third piece is the encoded text.
123 * 130 *
124 * @param str The string to convert back. 131 * @param str The string to convert back.
125 * 132 *
126 * @return The readble string. 133 * @return The readble string.
127 */ 134 */