]> diplodocus.org Git - nmh/blob - h/prototypes.h
More cleaned and conversion to the new parameter API.
[nmh] / h / prototypes.h
1
2 /*
3 * prototypes.h -- various prototypes
4 *
5 * If you modify functions here, please document their current behavior
6 * as much as practical.
7 */
8
9 /*
10 * prototype from config.h
11 */
12 char *etcpath(char *);
13
14 /*
15 * prototypes from the nmh subroutine library
16 */
17
18 struct msgs_array;
19
20 void add_profile_entry (const char *, const char *);
21 void adios (char *, char *, ...) NORETURN;
22 void admonish (char *, char *, ...);
23 void advertise (char *, char *, char *, va_list);
24 void advise (char *, char *, ...);
25 char **argsplit (char *, char **, int *);
26 void argsplit_msgarg (struct msgs_array *, char *, char **);
27 void argsplit_insert (struct msgs_array *, char *, char **);
28 void arglist_free (char *, char **);
29 void ambigsw (char *, struct swit *);
30 int atooi(char *);
31 char **brkstring (char *, char *, char *);
32 int check_charset (char *, int);
33 int client(char *, char *, char *, int, int);
34 void closefds(int);
35 char *concat (const char *, ...);
36 int context_del (char *);
37 char *context_find (char *);
38 int context_foil (char *);
39 void context_read (void);
40 void context_replace (char *, char *);
41 void context_save (void);
42 char *copy (const char *, char *);
43 char **copyip (char **, char **, int);
44 void cpydata (int, int, char *, char *);
45 void cpydgst (int, int, char *, char *);
46 char *cpytrim (const char *);
47 int decode_rfc2047 (char *, char *, size_t);
48 void discard (FILE *);
49 int default_done (int);
50
51 /*
52 * Encode a message header using RFC 2047 encoding. If the message contains
53 * no non-ASCII characters, then leave the header as-is.
54 *
55 * Arguments include:
56 *
57 * name - Message header name
58 * value - Message header content; must point to allocated memory
59 * (may be changed if encoding is necessary)
60 * encoding - Encoding type. May be one of CE_UNKNOWN (function chooses
61 * the encoding), CE_BASE64 or CE_QUOTED
62 * charset - Charset used for encoding. If NULL, obtain from system
63 * locale.
64 *
65 * Returns 0 on success, any other value on failure.
66 */
67
68 int encode_rfc2047(const char *name, char **value, int encoding,
69 const char *charset);
70
71 void escape_display_name (char *, size_t);
72 void escape_local_part (char *, size_t);
73 int ext_hook(char *, char *, char *);
74 int fdcompare (int, int);
75 int folder_addmsg (struct msgs **, char *, int, int, int, int, char *);
76 int folder_delmsgs (struct msgs *, int, int);
77 void folder_free (struct msgs *);
78 int folder_pack (struct msgs **, int);
79
80 /*
81 * Read a MH folder structure and return an allocated "struct msgs"
82 * corresponding to the contents of the folder.
83 *
84 * Arguments include:
85 *
86 * name - Name of folder
87 * lockflag - If true, write-lock (and keep open) metadata files.
88 * See comments for seq_read() for more information.
89 */
90 struct msgs *folder_read (char *name, int lockflag);
91
92 struct msgs *folder_realloc (struct msgs *, int, int);
93 int gans (char *, struct swit *);
94 char **getans (char *, struct swit *);
95 #ifdef READLINE_SUPPORT
96 char **getans_via_readline (char *, struct swit *);
97 #endif /* READLINE_SUPPORT */
98 int getanswer (char *);
99 char **getarguments (char *, int, char **, int);
100 char *get_charset(void);
101 char *getcpy (const char *);
102 char *get_default_editor(void);
103 char *getfolder(int);
104
105 /*
106 * Get a string from the terminfo database for the current terminal.
107 *
108 * Retrieve the specified terminfo capability and return a string that
109 * can be output to the terminal. The string returned has already been
110 * processed by tputs(), so it is safe to output directly. The return
111 * value of this function is valid until the next call.
112 *
113 * Arguments:
114 *
115 * capability - The name of the terminfo capability (see terminfo(5)).
116 *
117 * Returns a tputs-processed string, or NULL if terminal initialization failed
118 * or the capability wasn't found.
119 */
120 char *get_term_stringcap(char *capability);
121
122 /*
123 * Get a parameterized string from the terminfo database for the current
124 * terminal.
125 *
126 * We don't yet have a standardized tparm() that will take a stdarg
127 * argument. Right now we don't want many parameters, so we only
128 * take two. Everything gets passed to tparm() as-is. If we need
129 * a capability with more arguments, we'll just add more later.
130 *
131 * Arguments:
132 *
133 * capability - The name of the terminfo capability (see terminfo(5)).
134 * arg1..argN - Arguments 1-N.
135 *
136 * Returns a tparm and tputs-processed string, or NULL if there was a problem
137 * initializating the terminal or retrieving the capability.
138 */
139 char *get_term_stringparm(char *capability, long arg1, long arg2);
140
141 /*
142 * Get a number from the terminfo database for the current terminal.
143 *
144 * Retrieve the specified terminfo capability and return the numeric
145 * value of that capability from the terminfo database.
146 *
147 * Arguments:
148 *
149 * capability - The name of the terminfo capability (see terminfo(5)).
150 *
151 * Returns the output of tigetnum() for that capability, or -1 if it was
152 * unable to initialize the terminfo database.
153 */
154 int get_term_numcap(char *capability);
155
156 /*
157 * Lock open/close routines.
158 *
159 * The lk[f]opendata() functions are designed to open "data" files (anything
160 * not a mail spool file) using the locking mechanism configured for data
161 * files. The lk[f]openspool() functions are for opening the mail spool
162 * file, which will use the locking algorithm configured for the mail
163 * spool.
164 *
165 * Files opened for reading are locked with a read lock (if possible by
166 * the underlying lock mechanism), files opened for writing are locked
167 * using an exclusive lock.
168 */
169 int lkclosedata(int, const char *);
170 int lkclosespool(int, const char *);
171 int lkfclosedata(FILE *, const char *);
172 int lkfclosespool(FILE *, const char *);
173 FILE *lkfopendata(const char *, const char *);
174 int lkopendata(const char *, int, mode_t);
175 FILE *lkfopenspool(const char *, const char *);
176 int lkopenspool(const char *, int, mode_t);
177 int m_atoi (char *);
178 char *m_backup (char *);
179 int m_convert (struct msgs *, char *);
180 char *m_draft (char *, char *, int, int *);
181 void m_eomsbr (m_getfld_state_t, int (*)(int));
182 void m_getfld_state_reset (m_getfld_state_t *);
183 void m_getfld_state_destroy (m_getfld_state_t *);
184 void m_getfld_track_filepos (m_getfld_state_t *, FILE *);
185 int m_getfld (m_getfld_state_t *, char[NAMESZ], char *, int *, FILE *);
186 int m_gmprot (void);
187 char *m_maildir (char *);
188 char *m_mailpath (char *);
189 char *m_name (int);
190 int m_putenv (char *, char *);
191 int m_rand (unsigned char *, size_t);
192 char *m_mktemp(const char *, int *, FILE **);
193 char *m_mktemp2(const char *, const char *, int *, FILE **);
194 char *m_mktemps(const char *pfx, const char *suffix, int *, FILE **);
195 char *get_temp_dir();
196 void m_unknown(m_getfld_state_t *, FILE *);
197 int makedir (char *);
198 char *message_id (time_t, int);
199
200 /*
201 * Return a MIME content-type string for the specified file.
202 *
203 * If the system supports it, will use the "file" command to determine
204 * the appropriate content-type. Otherwise it will try to determine the
205 * content-type from the suffix. If that fails, the file will be scanned
206 * and either assigned a MIME type of text/plain or application/octet-stream
207 * depending if binary content is present.
208 *
209 * Arguments:
210 *
211 * filename - The name of the file to determine the MIME type of.
212 *
213 * Returns a pointer to a content-type string (which may include MIME
214 * parameters, such as charset). Returns a NULL if it cannot determine
215 * the MIME type of the file. Returns allocated storage that must be
216 * free'd.
217 */
218 char *mime_type(const char *filename);
219
220 /*
221 * Clear the screen, using the appropriate entry from the terminfo database
222 */
223 void nmh_clear_screen(void);
224 char *nmh_getpass(const char *);
225 char *norm_charmap(char *);
226 char *new_fs (char *, char *, char *);
227 char *path(char *, int);
228 int peekc(FILE *ib);
229 int pidwait (pid_t, int);
230 int pidstatus (int, FILE *, char *);
231 char *pluspath(char *);
232 void print_help (char *, struct swit *, int);
233 void print_sw (char *, struct swit *, char *, FILE *);
234 void print_version (char *);
235 void push (void);
236 char *pwd (void);
237 char *r1bindex(char *, int);
238 void readconfig (struct node **, FILE *, char *, int);
239 int refile (char **, char *);
240 void ruserpass (char *, char **, char **);
241 int remdir (char *);
242 void scan_detect_mbox_style (FILE *);
243 void scan_finished ();
244 void scan_eom_action (int (*)());
245 void scan_reset_m_getfld_state ();
246 int seq_addmsg (struct msgs *, char *, int, int, int);
247 int seq_addsel (struct msgs *, char *, int, int);
248 char *seq_bits (struct msgs *);
249 int seq_delmsg (struct msgs *, char *, int);
250 int seq_delsel (struct msgs *, char *, int, int);
251 int seq_getnum (struct msgs *, char *);
252 char *seq_list (struct msgs *, char *);
253 int seq_nameok (char *);
254 void seq_print (struct msgs *, char *);
255 void seq_printall (struct msgs *);
256
257 /*
258 * Read the sequence files for the folder referenced in the given
259 * struct msgs and populate the sequence entries in the struct msgs.
260 *
261 * Arguments:
262 *
263 * mp - Folder structure to add sequence entries to
264 * lockflag - If true, obtain a write lock on the sequence file.
265 * Additionally, the sequence file will remain open
266 * and a pointer to the filehandle will be stored in
267 * folder structure, where it will later be used by
268 * seq_save().
269 */
270 void seq_read (struct msgs * mp, int lockflag);
271 void seq_save (struct msgs *);
272 void seq_setcur (struct msgs *, int);
273 void seq_setprev (struct msgs *);
274 void seq_setunseen (struct msgs *, int);
275 int showfile (char **, char *);
276 int smatch(char *, struct swit *);
277
278 /*
279 * Convert a set of bit flags to printable format.
280 *
281 * Arguments:
282 *
283 * buffer - Buffer to output string to.
284 * size - Size of buffer in bytes. Buffer is always NUL terminated.
285 * flags - Binary flags to output
286 * bitfield - Textual representation of bits to output. This string
287 * is in the following format:
288 *
289 * Option byte 0x01 STRING1 0x02 STRING2 ....
290 *
291 * The first byte is an option byte to snprintb(). Currently the only option
292 * supported is 0x08, which indicates that the flags should be output in
293 * octal format; if the option byte is any other value, the flags will be
294 * output in hexadecimal.
295 *
296 * After the option bytes are series of text strings, prefixed by the number
297 * of the bit they correspond to. For example, the bitfield string:
298 *
299 * "\020\01FLAG1\02FLAG2\03FLAG3\04FLAG4"
300 *
301 * will output the following string if "flags" is set to 0x09:
302 *
303 * 0x2<FLAG1,FLAG4>
304 *
305 * You don't have to use octal in the bitfield string, that's just the
306 * convention currently used by the nmh code. The order of flags in the
307 * bitfield string is not significant, but again, general convention is
308 * from least significant bit to most significant.
309 */
310 char *snprintb (char *buffer, size_t size, unsigned flags, char *bitfield);
311 int ssequal (char *, char *);
312 int stringdex (char *, char *);
313 char *trimcpy (char *);
314 int unputenv (char *);
315
316 /*
317 * Remove quotes and quoted-pair sequences from RFC-5322 atoms.
318 *
319 * Currently the actual algorithm is simpler than it technically should
320 * be: any quotes are simply eaten, unless they're preceded by the escape
321 * character (\). This seems to be sufficient for our needs for now.
322 *
323 * Arguments:
324 *
325 * input - The input string
326 * output - The output string; is assumed to have at least as much
327 * room as the input string. At worst the output string will
328 * be the same size as the input string; it might be smaller.
329 *
330 */
331 void unquote_string(const char *input, char *output);
332 int uprf (char *, char *);
333 int vfgets (FILE *, char **);
334 char *write_charset_8bit (void);
335
336
337 /*
338 * some prototypes for address parsing system
339 * (others are in addrsbr.h)
340 */
341 char *LocalName(int);
342 char *SystemName(void);
343
344 /*
345 * prototypes for some routines in uip
346 */
347 int annotate (char *, char *, char *, int, int, int, int);
348 void annolist(char *, char *, char *, int);
349 void annopreserve(int);
350 void m_pclose(void);
351 int make_intermediates(char *);
352 int mhl(int, char **);
353 int mhlsbr(int, char **, FILE *(*)(char *));
354 int distout (char *, char *, char *);
355 void replout (FILE *, char *, char *, struct msgs *, int,
356 int, char *, char *, char *, int);
357 int sc_length(void);
358 int sc_width(void);
359 int build_form (char *, char *, int *, char *, char *, char *, char *,
360 char *, char *);
361 int sendsbr (char **, int, char *, char *, struct stat *, int);
362 int SOprintf (char *, ...);
363 int what_now (char *, int, int, char *, char *,
364 int, struct msgs *, char *, int, char *, int);
365 int WhatNow(int, char **);
366
367 /*
368 * Copy data from one file to another, converting to base64-encoding.
369 *
370 * Arguments include:
371 *
372 * in - Input filehandle (unencoded data)
373 * out - Output filename (base64-encoded data)
374 * crlf - If set, output encoded CRLF for every LF on input.
375 *
376 * Returns OK on success, NOTOK otherwise.
377 */
378 int writeBase64aux(FILE *in, FILE *out, int crlf);
379
380 int writeBase64 (unsigned char *, size_t, unsigned char *);
381 int writeBase64raw (unsigned char *, size_t, unsigned char *);
382
383 /*
384 * credentials management
385 */
386 void init_credentials_file ();
387 int nmh_get_credentials (char *, char *, int, nmh_creds_t);
388
389 /*
390 * temporary file management
391 */
392 int nmh_init(const char *argv0, int read_context);
393 int m_unlink(const char *);
394 void unregister_for_removal(int remove_files);