simplify parse_parameters tokenizer
[apps/madmutt.git] / lib-mime / mime.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 /*
21  * Copyright notice from original mutt:
22  * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
23  * Copyright (C) 1999-2000 Thomas Roessler <roessler@does-not-exist.org>
24  *
25  * This file is part of mutt-ng, see http://www.muttng.org/.
26  * It's licensed under the GNU General Public License,
27  * please see the file GPL in the top level source directory.
28  */
29
30 #ifndef MUTT_LIB_MIME_MIME_H
31 #define MUTT_LIB_MIME_MIME_H
32
33 #include <stdlib.h>
34 #include <stdio.h>
35
36 #include "mime-types.h"
37
38 extern const char MimeSpecials[];
39 extern const char *BodyTypes[];
40 extern const char *BodyEncodings[];
41
42 /* MIME encoding/decoding global vars */
43
44 #define is_multipart(x) \
45     ((x)->type == TYPEMULTIPART \
46      || ((x)->type == TYPEMESSAGE && (!strcasecmp((x)->subtype, "rfc822") \
47                                       || !strcasecmp((x)->subtype, "news"))))
48 #define TYPE(X) ((X->type == TYPEOTHER) && (X->xtype != NULL) ? X->xtype : BodyTypes[(X->type)])
49 #define ENCODING(X) BodyEncodings[(X)]
50
51 /****************************************************************************/
52 /* RFC 822                                                                  */
53 /*                Standard for ARPA Internet Text Messages                  */
54 /****************************************************************************/
55
56 extern const char RFC822Specials[];
57
58 ssize_t mutt_read_rfc822_line(FILE*, char**, ssize_t*);
59 LIST *mutt_parse_references(char *, int);
60 int mutt_check_encoding(const char *);
61
62 /*** addresses ***/
63
64 address_t *address_dup(address_t *addr);
65 address_t *address_list_dup(address_t *addr);
66 void rfc822_qualify(address_t *, const char *);
67
68 address_t *rfc822_parse_adrlist(address_t *, const char *s);
69
70 ssize_t rfc822_write_address(char *, ssize_t, address_t *, int);
71 ssize_t rfc822_write_address_single(char *, ssize_t, address_t *, int);
72 ssize_t rfc822_strcpy(char *, ssize_t, const char *, const char *);
73
74 /****************************************************************************/
75 /* RFC 2047                                                                 */
76 /*       MIME (Multipurpose Internet Mail Extensions) Part Three:           */
77 /*             Message Header Extensions for Non-ASCII Text                 */
78 /****************************************************************************/
79
80 char *mutt_choose_charset(const char *fromcode, const char *charsets,
81                           char *u, ssize_t ulen, char **d, ssize_t *dlen);
82
83 void rfc2047_encode_string(char **);
84 void rfc2047_encode_adrlist(address_t *, const char *);
85
86 void rfc2047_decode(char **);
87 void rfc2047_decode_adrlist(address_t *);
88 void rfc2047_decode_envelope(ENVELOPE* e);
89
90 /****************************************************************************/
91 /* RFC 2231                                                                 */
92 /*             MIME Parameter Value and Encoded Word Extensions:            */
93 /*               Character Sets, Languages, and Continuations               */
94 /****************************************************************************/
95
96 int  rfc2231_encode_string(char **);
97 void rfc2231_decode_parameters(PARAMETER **);
98
99 #endif /* MUTT_LIB_MIME_MIME_H */