diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2009-05-04 21:52:22 +0000 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2009-05-04 21:52:22 +0000 |
commit | 51ee0c2fb3e59a2d79d68aa27d1e15d16bcbceba (patch) | |
tree | 7f9929a5a9d15655af740241c5ce3c84e5e0639e /fetchmail.h | |
parent | ce32a9de022a005deb6d32dc1f567d4ec919d7c3 (diff) | |
download | fetchmail-51ee0c2fb3e59a2d79d68aa27d1e15d16bcbceba.tar.gz fetchmail-51ee0c2fb3e59a2d79d68aa27d1e15d16bcbceba.tar.bz2 fetchmail-51ee0c2fb3e59a2d79d68aa27d1e15d16bcbceba.zip |
Add report_flush(fp) function (report.c).
svn path=/branches/BRANCH_6-3/; revision=5289
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fetchmail.h b/fetchmail.h index 35dfa223..4b32a889 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -472,6 +472,8 @@ const char *norm_charmap(const char *name); /* error.c: Error reporting */ #if defined(HAVE_STDARG_H) void report_init(int foreground); + /** Flush partial message, suppress program name tag for next report printout. */ +void report_flush(FILE *fp); void report (FILE *fp, const char *format, ...) __attribute__ ((format (printf, 2, 3))) ; |