comparison src/util.h @ 11501:9563b768e8e2

[gaim-migrate @ 13746] Doxygen fixes. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sun, 11 Sep 2005 03:58:13 +0000
parents 8e600ee6ec61
children 11d30825c1bb
comparison
equal deleted inserted replaced
11500:9fc7d0153332 11501:9563b768e8e2
123 * to transmit binary data as ASCII. It's intended purpose is to send 123 * to transmit binary data as ASCII. It's intended purpose is to send
124 * e-mails containing non-ASCII characters. Wikipedia has a pretty good 124 * e-mails containing non-ASCII characters. Wikipedia has a pretty good
125 * explanation. Also see RFC 2045. 125 * explanation. Also see RFC 2045.
126 * 126 *
127 * @param str The quoted printable ASCII string to convert to raw data. 127 * @param str The quoted printable ASCII string to convert to raw data.
128 * @param ret_str The returned, readable string. 128 * @param ret_len The length of the returned data.
129 * @param ret_len The length of the returned data. You can 129 *
130 * pass in NULL if you're sure that you know 130 * @return The readable string. Must be g_free'd when no longer needed.
131 * the length of the decoded data, or if you
132 * know you'll be able to use strlen to
133 * determine the length, etc.
134 *
135 * @return The raw data. Must be g_free'd when no longer needed.
136 */ 131 */
137 guchar *gaim_quotedp_decode(const char *str, gsize *ret_len); 132 guchar *gaim_quotedp_decode(const char *str, gsize *ret_len);
138 133
139 /*@}*/ 134 /*@}*/
140 135