Commit 1bd1a954 1bd1a95471f2908fea1ae1910dbc8333efa48d34 by Sergey Poznyakoff

(rfc2047_decode): New function.

1 parent 311ddb23
1 /* GNU Mailutils -- a suite of utilities for electronic mail 1 /* GNU Mailutils -- a suite of utilities for electronic mail
2 Copyright (C) 1999, 2000, 2001 Free Software Foundation, Inc. 2 Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
3 3
4 GNU Mailutils is free software; you can redistribute it and/or modify 4 GNU Mailutils is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Library Public License as published by 5 it under the terms of the GNU General Library Public License as published by
...@@ -41,6 +41,10 @@ int mime_add_part __P ((mime_t mime, message_t msg)); ...@@ -41,6 +41,10 @@ int mime_add_part __P ((mime_t mime, message_t msg));
41 41
42 int mime_get_message __P ((mime_t mime, message_t *msg)); 42 int mime_get_message __P ((mime_t mime, message_t *msg));
43 43
44 int rfc2047_decode __P((const char *tocode, const char *fromstr,
45 char **ptostr));
46
47
44 #ifdef __cplusplus 48 #ifdef __cplusplus
45 } 49 }
46 #endif 50 #endif
......