~ubuntu-dev/ubuntu/lucid/mutt/lucid-201002110857

« back to all changes in this revision

Viewing changes to protos.h

  • Committer: Bazaar Package Importer
  • Author(s): Bhavani Shankar
  • Date: 2009-06-07 17:30:03 UTC
  • mto: (16.2.1 experimental) (2.3.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 21.
  • Revision ID: james.westby@ubuntu.com-20090607173003-rg37ui3h2bbv7wl0
Tags: upstream-1.5.19
ImportĀ upstreamĀ versionĀ 1.5.19

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * Copyright (C) 1996-2000 Michael R. Elkins <me@mutt.org>
 
2
 * Copyright (C) 1996-2000,2007 Michael R. Elkins <me@mutt.org>
3
3
 * 
4
4
 *     This program is free software; you can redistribute it and/or modify
5
5
 *     it under the terms of the GNU General Public License as published by
90
90
int query_quadoption (int, const char *);
91
91
int quadoption (int);
92
92
 
93
 
char* mutt_extract_message_id (const char *);
 
93
char* mutt_extract_message_id (const char *, const char **);
94
94
 
95
95
ADDRESS *mutt_default_from (void);
96
96
ADDRESS *mutt_get_address (ENVELOPE *, char **);
230
230
void mutt_perror (const char *);
231
231
void mutt_prepare_envelope (ENVELOPE *, int);
232
232
void mutt_unprepare_envelope (ENVELOPE *);
233
 
void mutt_pretty_mailbox (char *);
 
233
void mutt_pretty_mailbox (char *, size_t);
234
234
void mutt_pretty_size (char *, size_t, LOFF_T);
235
235
void mutt_pipe_message (HEADER *);
236
236
void mutt_print_message (HEADER *);
265
265
int mutt_addr_is_user (ADDRESS *);
266
266
int mutt_addwch (wchar_t);
267
267
int mutt_alias_complete (char *, size_t);
 
268
void mutt_alias_add_reverse (ALIAS *t);
 
269
void mutt_alias_delete_reverse (ALIAS *t);
268
270
int mutt_alloc_color (int fg, int bg);
269
271
int mutt_any_key_to_continue (const char *);
270
272
int mutt_buffy_check (int);
371
373
int mutt_write_mime_header (BODY *, FILE *);
372
374
int mutt_write_one_header (FILE *fp, const char *tag, const char *value, const char *pfx, int wraplen);
373
375
int mutt_write_rfc822_header (FILE *, ENVELOPE *, BODY *, int, int);
 
376
void mutt_write_references (LIST *, FILE *, int);
374
377
int mutt_yesorno (const char *, int);
375
378
void mutt_set_header_color(CONTEXT *, HEADER *);
376
379
void mutt_sleep (short);
523
526
void ci_bounce_message (HEADER *, int *);
524
527
int ci_send_message (int, HEADER *, char *, CONTEXT *, HEADER *);
525
528
 
 
529
/* prototypes for compatibility functions */
 
530
 
 
531
#ifndef HAVE_SETENV
 
532
int setenv (const char *, const char *, int);
 
533
#endif
 
534
 
 
535
#ifndef HAVE_STRCASECMP
 
536
int strcasecmp (char *, char *);
 
537
int strncasecmp (char *, char *, size_t);
 
538
#endif
 
539
 
 
540
#ifndef HAVE_STRDUP
 
541
char *strdup (const char *);
 
542
#endif
 
543
 
 
544
#ifndef HAVE_STRSEP
 
545
char *strsep (char **, const char *);
 
546
#endif
 
547
 
 
548
#ifndef HAVE_STRTOK_R
 
549
char *strtok_r (char *, const char *, char **);
 
550
#endif
526
551