43e934081578b3f0c82c0141da17d04b8176332d
[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 <sys/types.h>
24 #include <pwd.h>
25
26 #include <lib-lib/rx.h>
27
28 ssize_t mutt_gecos_name(char *dst, ssize_t n, struct passwd *pw, regex_t *rx);
29 int getdnsdomainname(char *, ssize_t);
30
31 /* flags for _mutt_system() */
32 #define M_DETACH_PROCESS        1       /* detach subprocess from group */
33
34 #define mutt_system(x) _mutt_system(x,0)
35 int _mutt_system (const char *, int);
36
37
38 #endif /* MUTT_LIB_SYS_UNIX_H */