no warnings in lib-sys anymore
[apps/madmutt.git] / mh.h
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 1996-2002 Michael R. Elkins <me@mutt.org>
4  * Copyright (C) 1999-2002 Thomas Roessler <roessler@does-not-exist.org>
5  *
6  * This file is part of mutt-ng, see http://www.muttng.org/.
7  * It's licensed under the GNU General Public License,
8  * please see the file GPL in the top level source directory.
9  */
10
11 /*
12  * functions for dealing with Maildir/MH style mailboxes
13  */
14
15 #ifndef _MH_H
16 #define _MH_H
17
18 #include "mx.h"
19
20 /* TODO all of these must disappear to achieve good information hiding */
21
22 int mh_buffy (const char *);
23 FILE *maildir_open_find_message (const char *, const char *);
24 int mh_valid_message (const char *);
25
26 /* these are the only publicly visible for usage */
27
28 mx_t* maildir_reg_mx (void);
29 mx_t* mh_reg_mx (void);
30
31 #endif /* !_MH_H */