diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-03 06:41:13 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-03 06:41:13 +0000 |
commit | 689ff9f4de6fb7cb31d3b6421ad7423c1614d004 (patch) | |
tree | b89c869723e987ccb4e8abb49d27a4d81ffa6775 /fetchmail.h | |
parent | a6627abcad47c801553b84b761afd01eac97c840 (diff) | |
download | fetchmail-689ff9f4de6fb7cb31d3b6421ad7423c1614d004.tar.gz fetchmail-689ff9f4de6fb7cb31d3b6421ad7423c1614d004.tar.bz2 fetchmail-689ff9f4de6fb7cb31d3b6421ad7423c1614d004.zip |
Move some code.
svn path=/trunk/; revision=2170
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 721a4b8a..c0550202 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -364,6 +364,13 @@ int stuffline(struct query *, char *); int open_sink(struct query*, const char*, struct idlist*, long reallen, int*, int*); void release_sink(struct query *); int close_sink(struct query *, flag); +int open_warning_by_mail(struct query *); +#if defined(HAVE_STDARG_H) +void stuff_warning_line(struct query *, const char *, ... ); +#else +void stuff_warning_line(); +#endif +void close_warning_by_mail(struct query *); /* rfc822.c: RFC822 header parsing */ char *reply_hack(char *, const char *); |