Replaced folder_exists() by a call to create_folder().
[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 int folder_pack(struct msgs **, int);
51 struct msgs *folder_read(char *);
52 struct msgs *folder_realloc(struct msgs *, int, int);
53 int gans(char *, struct swit *);
54 char **getans(char *, struct swit *);
55 int getanswer(char *);
56 char **getarguments(char *, int, char **, int);
57 char *get_charset();
58 char *getcpy(char *);
59 char *getcurfol(void);
60 char *getdeffol(void);
61 int lkclose(int, char*);
62 int lkfclose(FILE *, char *);
63 FILE *lkfopen(char *, char *);
64 int lkopen(char *, int, mode_t);
65 int m_atoi(char *);
66 char *m_backup(char *);
67 int m_convert(struct msgs *, char *);
68 char *m_draft(char *);
69 int m_getfld(int, unsigned char *, unsigned char *, int, FILE *);
70 int m_gmprot(void);
71 char *m_name(int);
72 int m_putenv(char *, char *);
73 char *m_mktemp(const char *, int *, FILE **);
74 char *m_mktemp2(const char *, const char *, int *, FILE **);
75 void m_unknown(FILE *);
76 int makedir(char *);
77 char *nmh_getpass(const char *);
78 char *norm_charmap(char *);
79 char *new_fs(char *, char *);
80 int pidwait(pid_t, int);
81 int pidstatus(int, FILE *, char *);
82 void print_help(char *, struct swit *, int);
83 void print_sw(char *, struct swit *, char *, FILE *);
84 void print_version(char *);
85 void push(void);
86 char *pwd(void);
87 char *mhbasename(char *);
88 void readconfig(struct node **, FILE *, char *, int);
89 int refile(char **, char *);
90 void ruserpass(char *, char **, char **);
91 int seq_addmsg(struct msgs *, char *, int, int, int);
92 int seq_addsel(struct msgs *, char *, int, int);
93 char *seq_bits(struct msgs *);
94 int seq_delmsg(struct msgs *, char *, int);
95 int seq_delsel(struct msgs *, char *, int, int);
96 int seq_getnum(struct msgs *, char *);
97 char *seq_list(struct msgs *, char *);
98 int seq_nameok(unsigned char *);
99 void seq_print(struct msgs *, char *);
100 void seq_printall(struct msgs *);
101 void seq_read(struct msgs *);
102 void seq_save(struct msgs *);
103 void seq_setcur(struct msgs *, int);
104 void seq_setprev(struct msgs *);
105 void seq_setunseen(struct msgs *, int);
106 int showfile(char **, char *);
107 int smatch(char *, struct swit *);
108 char *snprintb(char *, size_t, unsigned, char *);
109 int stringdex(char *, char *);
110 char *toabsdir(char *);
111 char *trimcpy(unsigned char *);
112 int unputenv(char *);
113 int uprf(char *, char *);
114 int vfgets(FILE *, char **);
115 char *write_charset_8bit(void);
116 int get_returnpath(char *, int, char *, int);
117
118 /*
119 ** prototypes for compatibility functions in library
120 */
121 #ifndef HAVE_SNPRINTF_PROTOTYPE
122 int snprintf(char *, size_t, const char *, ...);
123 int vsnprintf(char *, size_t, const char *, va_list);
124 #endif
125
126 int mh_strcasecmp(const char *s1, const char *s2);
127 int strncasecmp(const char *s1, const char *s2, size_t n);
128
129
130 /*
131 ** prototypes for some routines in uip
132 */
133 int distout(char *, char *, char *);
134 int what_now(char *, int, int, char *, char *, int, struct msgs *,
135                 char *, char *);
136
137 /*
138 ** from the former mts.h
139 */
140 char *LocalName(void);  /* hostname */
141 char *getusername(void);
142 char *getfullname(void);