Eliminate '#ifdef HAVE_FOO' for Posix-mandated FOOs.
[mmh] / h / prototypes.h
1 /*
2 ** prototypes.h -- various prototypes
3 */
4
5 /*
6 ** missing system prototypes
7 */
8 #ifndef HAVE_TERMCAP_H
9 extern int tgetent(char *bp, char *name);
10 extern int tgetnum(char *id);
11 extern int tgetflag(char *id);
12 extern char *tgetstr(char *id, char **area);
13 extern char *tgoto(char *cm, int destcol, int destline);
14 extern int tputs(char *cp, int affcnt, int (*outc) (int));
15 #endif
16
17 /*
18 ** prototype from config.h
19 */
20 char *etcpath(char *);
21
22 /*
23 ** prototypes from the nmh subroutine library
24 */
25 void adios(char *, char *, ...) NORETURN;
26 void admonish(char *, char *, ...);
27 void advertise(char *, char *, char *, va_list);
28 void advise(char *, char *, ...);
29 void ambigsw(char *, struct swit *);
30 char **brkstring(char *, char *, char *);
31 int check_charset(char *, int);
32 char *concat(char *, ...);
33 int context_del(char *);
34 char *context_find(char *);
35 int context_foil(char *);
36 void context_read(void);
37 void context_replace(char *, char *);
38 void context_save(void);
39 void cpydata(int, int, char *, char *);
40 void cpydgst(int, int, char *, char *);
41 int decode_rfc2047(char *, char *, size_t);
42 void discard(FILE *);
43 int default_done(int);
44 char *expandfol(char *);
45 char *expanddir(char *);
46 int ext_hook(char *, char *, char *);
47 int folder_addmsg(struct msgs **, char *, int, int, int, int, char *);
48 int folder_delmsgs(struct msgs *, int, int);
49 void folder_free(struct msgs *);
50 struct msgs *folder_read(char *);
51 struct msgs *folder_realloc(struct msgs *, int, int);
52 int gans(char *, struct swit *);
53 char **getans(char *, struct swit *);
54 int getanswer(char *);
55 char **getarguments(char *, int, char **, int);
56 char *get_charset();
57 char *getcpy(char *);
58 char *getcurfol(void);
59 char *getdeffol(void);
60 int lkclose(int, char*);
61 int lkfclose(FILE *, char *);
62 FILE *lkfopen(char *, char *);
63 int lkopen(char *, int, mode_t);
64 int m_atoi(char *);
65 char *m_backup(char *);
66 int m_convert(struct msgs *, char *);
67 char *m_draft(char *);
68 int m_getfld(int, unsigned char *, unsigned char *, int, FILE *);
69 int m_gmprot(void);
70 char *m_name(int);
71 int m_putenv(char *, char *);
72 char *m_mktemp(const char *, int *, FILE **);
73 char *m_mktemp2(const char *, const char *, int *, FILE **);
74 void thisisanmbox(FILE *);
75 int makedir(char *);
76 char *nmh_getpass(const char *);
77 char *norm_charmap(char *);
78 char *new_fs(char *, char *);
79 int pidwait(pid_t, int);
80 int pidstatus(int, FILE *, char *);
81 void print_help(char *, struct swit *, int);
82 void print_sw(char *, struct swit *, char *, FILE *);
83 void print_version(char *);
84 void push(void);
85 char *pwd(void);
86 char *mhbasename(char *);
87 void readconfig(struct node **, FILE *, char *, int);
88 int refile(char **, char *);
89 void ruserpass(char *, char **, char **);
90 int seq_addmsg(struct msgs *, char *, int, int, int);
91 int seq_addsel(struct msgs *, char *, int, int);
92 char *seq_bits(struct msgs *);
93 int seq_delmsg(struct msgs *, char *, int);
94 int seq_delsel(struct msgs *, char *, int, int);
95 int seq_getnum(struct msgs *, char *);
96 char *seq_list(struct msgs *, char *);
97 int seq_nameok(unsigned char *);
98 void seq_print(struct msgs *, char *);
99 void seq_printall(struct msgs *);
100 void seq_read(struct msgs *);
101 void seq_save(struct msgs *);
102 void seq_setcur(struct msgs *, int);
103 void seq_setprev(struct msgs *);
104 void seq_setunseen(struct msgs *, int);
105 int showfile(char **, char *);
106 int smatch(char *, struct swit *);
107 char *snprintb(char *, size_t, unsigned, char *);
108 int stringdex(char *, char *);
109 char *toabsdir(char *);
110 char *trimcpy(unsigned char *);
111 int unputenv(char *);
112 int uprf(char *, char *);
113 int vfgets(FILE *, char **);
114 char *write_charset_8bit(void);
115 int get_returnpath(char *, int, char *, int);
116
117 int mh_strcasecmp(const char *s1, const char *s2);
118 int strncasecmp(const char *s1, const char *s2, size_t n);
119
120
121 /*
122 ** prototypes for some routines in uip
123 */
124 int distout(char *, char *, char *);
125 int what_now(char *, int, int, char *, char *, int, struct msgs *,
126                 char *, char *);
127
128 /*
129 ** from the former mts.h
130 */
131 char *LocalName(void);  /* hostname */
132 char *getusername(void);
133 char *getfullname(void);