Blame view

readmsg/readmsg.h 1.62 KB
1
/* GNU Mailutils -- a suite of utilities for electronic mail
2
   Copyright (C) 1999, 2000, 2001, 2002, 2005  Free Software Foundation, Inc.
3

4
   GNU Mailutils is free software; you can redistribute it and/or modify
5 6 7 8
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2, or (at your option)
   any later version.

9
   GNU Mailutils is distributed in the hope that it will be useful,
10 11 12 13 14
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
15
   along with GNU Mailutils; if not, write to the Free Software
16 17
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
   MA 02110-1301 USA */
18 19

#ifndef _READMSG_H
Alain Magloire authored
20
#define _READMSG_H
21

Sergey Poznyakoff authored
22 23 24
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
25 26 27 28
#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
29
#include <ctype.h>
30 31
#include <unistd.h>
#include <limits.h>
Alain Magloire authored
32
#include <errno.h>
33

34 35
#include <mailutils/body.h>
#include <mailutils/debug.h>
36
#include <mailutils/errno.h>
37 38
#include <mailutils/mailbox.h>
#include <mailutils/header.h>
39 40
#include <mailutils/list.h>
#include <mailutils/message.h>
41 42 43
#include <mailutils/mime.h>
#include <mailutils/filter.h>
#include <mailutils/registrar.h>
44
#include <mailutils/stream.h>
45
#include <mailutils/url.h>
46
#include <mailutils/nls.h>
Sergey Poznyakoff authored
47
#include <mailutils/tls.h>
48 49
#include <mailutils/argp.h>
#include <mailutils/error.h>
50

51
int msglist (mu_mailbox_t mbox, int show_all, int argc, char **argv, int **set, int *n);
52

53
#endif
54