1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*  GMime
3  *  Copyright (C) 2000-2020 Jeffrey Stedfast
4  *
5  *  This library is free software; you can redistribute it and/or
6  *  modify it under the terms of the GNU Lesser General Public License
7  *  as published by the Free Software Foundation; either version 2.1
8  *  of the License, or (at your option) any later version.
9  *
10  *  This library is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  *  Lesser General Public License for more details.
14  *
15  *  You should have received a copy of the GNU Lesser General Public
16  *  License along with this library; if not, write to the Free
17  *  Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
18  *  02110-1301, USA.
19  */
20 
21 
22 #ifndef __GMIME_PARSE_UTILS_H__
23 #define __GMIME_PARSE_UTILS_H__
24 
25 #include <glib.h>
26 
27 G_BEGIN_DECLS
28 
29 G_GNUC_INTERNAL gboolean g_mime_parse_content_type (const char **in, char **type, char **subtype);
30 
31 G_GNUC_INTERNAL gboolean g_mime_skip_comment (const char **in);
32 #define skip_comment(in) g_mime_skip_comment (in)
33 
34 G_GNUC_INTERNAL gboolean g_mime_skip_lwsp (const char **in);
35 #define skip_lwsp(in) g_mime_skip_lwsp (in)
36 
37 G_GNUC_INTERNAL gboolean g_mime_skip_cfws (const char **in);
38 #define skip_cfws(in) g_mime_skip_cfws (in)
39 
40 G_GNUC_INTERNAL gboolean g_mime_skip_quoted (const char **in);
41 #define skip_quoted(in) g_mime_skip_quoted (in)
42 
43 G_GNUC_INTERNAL gboolean g_mime_skip_atom (const char **in);
44 #define skip_atom(in) g_mime_skip_atom (in)
45 
46 G_GNUC_INTERNAL gboolean g_mime_skip_word (const char **in);
47 #define skip_word(in) g_mime_skip_word (in)
48 
49 
50 G_GNUC_INTERNAL const char *g_mime_decode_word (const char **in);
51 #define decode_word(in) g_mime_decode_word (in)
52 
53 G_GNUC_INTERNAL gboolean g_mime_decode_domain (const char **in, GString *domain);
54 #define decode_domain(in, domain) g_mime_decode_domain (in, domain)
55 
56 
57 G_GNUC_INTERNAL char *g_mime_decode_addrspec (const char **in);
58 #define decode_addrspec(in) g_mime_decode_addrspec (in)
59 
60 G_GNUC_INTERNAL char *g_mime_decode_msgid (const char **in);
61 #define decode_msgid(in) g_mime_decode_msgid (in)
62 
63 G_END_DECLS
64 
65 #endif /* __GMIME_PARSE_UTILS_H__ */
66