~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): أحمد المحمودي (Ahmed El-Mahmoudy)
  • Date: 2009-06-17 17:17:28 UTC
  • mfrom: (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 22.
  • Revision ID: james.westby@ubuntu.com-20090617171728-61dkl7w5fgn7ybdq
Tags: upstream-1.5.20
Import upstream version 1.5.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
371
371
int mutt_write_fcc (const char *path, HEADER *hdr, const char *msgid, int, char *);
372
372
int mutt_write_mime_body (BODY *, FILE *);
373
373
int mutt_write_mime_header (BODY *, FILE *);
374
 
int mutt_write_one_header (FILE *fp, const char *tag, const char *value, const char *pfx, int wraplen);
 
374
int mutt_write_one_header (FILE *fp, const char *tag, const char *value, const char *pfx, int wraplen, int flags);
375
375
int mutt_write_rfc822_header (FILE *, ENVELOPE *, BODY *, int, int);
376
376
void mutt_write_references (LIST *, FILE *, int);
377
377
int mutt_yesorno (const char *, int);
549
549
char *strtok_r (char *, const char *, char **);
550
550
#endif
551
551
 
 
552
#ifndef HAVE_WCSCASECMP
 
553
int wcscasecmp (const wchar_t *a, const wchar_t *b);
 
554
#endif
 
555
 
 
556
#ifndef HAVE_STRCASESTR
 
557
char *strcasestr (const char *, const char *);
 
558
#endif
 
559
 
 
560
#ifndef HAVE_MKDTEMP
 
561
char *mkdtemp (char *tmpl);
 
562
#endif