update source to use our brand new source generator. Update automakes.
[apps/madmutt.git] / lib-sys / unix.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 #ifndef MUTT_LIB_SYS_UNIX_H
21 #define MUTT_LIB_SYS_UNIX_H
22
23 #include <lib-lib/lib-lib.h>
24 #include <pwd.h>
25
26 ssize_t mutt_gecos_name(char *dst, ssize_t n, struct passwd *pw, rx_t *rx);
27 int getdnsdomainname(char *, ssize_t);
28
29 /* flags for _mutt_system() */
30 #define M_DETACH_PROCESS        1       /* detach subprocess from group */
31
32 #define mutt_system(x) _mutt_system(x,0)
33 int _mutt_system (const char *, int);
34
35
36 pid_t mutt_create_filter (const char *, FILE **, FILE **, FILE **);
37 pid_t mutt_create_filter_fd (const char *, FILE **, FILE **, FILE **, int,
38                              int, int);
39 int mutt_wait_filter (pid_t);
40
41 FILE *mutt_open_read (const char *, pid_t *);
42
43 #endif /* MUTT_LIB_SYS_UNIX_H */