blob: a4b2d0bd13019ea72e29cfa3f728414018a37b7c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
 | #ifndef mimegpgstack_h
#define mimegpgstack_h
/*
** Copyright 2001 Double Precision, Inc.  See COPYING for
** distribution information.
*/
#include "config.h"
#ifdef  __cplusplus
extern "C" {
#endif
struct mimestack {
	struct mimestack *next;
	char *boundary;
} ;
int libmail_mimestack_push(struct mimestack **, const char *);
void libmail_mimestack_pop(struct mimestack **);
struct mimestack *libmail_mimestack_search(struct mimestack *, const char *);
void libmail_mimestack_pop_to(struct mimestack **, struct mimestack *);
#ifdef  __cplusplus
} ;
#endif
#endif
 |