X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=h%2Fprototypes.h;h=12124cdbad0b43797c00572fdf48346f37ac9a23;hb=e42523dbf5820c4d1b0c3496b2d6a226fb31832e;hp=0f0502526e126eb0c8cd924e7a54ac3c202f2b13;hpb=56a805299de35d8924969138aef4d0f1580daa6d;p=mmh diff --git a/h/prototypes.h b/h/prototypes.h index 0f05025..12124cd 100644 --- a/h/prototypes.h +++ b/h/prototypes.h @@ -1,20 +1,18 @@ /* * prototypes.h -- various prototypes - * - * $Id$ */ /* * missing system prototypes */ -#ifndef HAVE_TERMCAP_H -extern int tgetent (char *bp, char *name); -extern int tgetnum (char *id); -extern int tgetflag (char *id); -extern char *tgetstr (char *id, char **area); -extern char *tgoto (char *cm, int destcol, int destline); -extern int tputs (char *cp, int affcnt, int (*outc) (int)); +#if ! defined(HAVE_TERMCAP_H) && ! defined (HAVE_NCURSES_TERMCAP_H) + extern int tgetent (char *bp, char *name); + extern int tgetnum (char *id); + extern int tgetflag (char *id); + extern char *tgetstr (char *id, char **area); + extern char *tgoto (char *cm, int destcol, int destline); + extern int tputs (char *cp, int affcnt, int (*outc) (int)); #endif /* @@ -25,7 +23,7 @@ char *etcpath(char *); /* * prototypes from the nmh subroutine library */ -void adios (char *, char *, ...); +void adios (char *, char *, ...) NORETURN; void admonish (char *, char *, ...); void advertise (char *, char *, char *, va_list); void advise (char *, char *, ...); @@ -33,6 +31,7 @@ void ambigsw (char *, struct swit *); int atooi(char *); char **brkstring (char *, char *, char *); int check_charset (char *, int); +int client(char *, char *, char *, int, int); void closefds(int); char *concat (char *, ...); int context_del (char *); @@ -71,15 +70,15 @@ int m_atoi (char *); char *m_backup (char *); int m_convert (struct msgs *, char *); char *m_draft (char *, char *, int, int *); -void m_eomsbr (int (*)()); +void m_eomsbr (int (*)(int)); int m_getfld (int, unsigned char *, unsigned char *, int, FILE *); int m_gmprot (void); char *m_maildir (char *); char *m_mailpath (char *); char *m_name (int); int m_putenv (char *, char *); -char *m_scratch (char *, char *); -char *m_tmpfil (char *); +char *m_mktemp(const char *, int *, FILE **); +char *m_mktemp2(const char *, const char *, int *, FILE **); void m_unknown(FILE *); int makedir (char *); char *nmh_getpass(const char *); @@ -91,14 +90,14 @@ int pidwait (pid_t, int); int pidstatus (int, FILE *, char *); char *pluspath(char *); void print_help (char *, struct swit *, int); -void print_sw (char *, struct swit *, char *); +void print_sw (char *, struct swit *, char *, FILE *); void print_version (char *); void push (void); char *pwd (void); char *r1bindex(char *, int); void readconfig (struct node **, FILE *, char *, int); int refile (char **, char *); -int ruserpass(char *, char **, char **); +void ruserpass(char *, char **, char **); int remdir (char *); int seq_addmsg (struct msgs *, char *, int, int, int); int seq_addsel (struct msgs *, char *, int, int); @@ -126,18 +125,6 @@ int uprf (char *, char *); int vfgets (FILE *, char **); char *write_charset_8bit (void); -#ifdef RPATHS -int get_returnpath (char *, int, char *, int); -#endif - -/* - * prototypes for compatibility functions in library - */ -#ifndef HAVE_SNPRINTF_PROTOTYPE -int snprintf (char *, size_t, const char *, ...); -int vsnprintf (char *, size_t, const char *, va_list); -#endif - int mh_strcasecmp (const char *s1, const char *s2); int strncasecmp (const char *s1, const char *s2, size_t n);