~ubuntu-branches/ubuntu/raring/postfix/raring

« back to all changes in this revision

Viewing changes to src/util/vstream.h

Tags: upstream-2.2.6
ImportĀ upstreamĀ versionĀ 2.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
extern int vstream_fflush(VSTREAM *);
79
79
extern int vstream_fputs(const char *, VSTREAM *);
80
80
extern VSTREAM *vstream_fdopen(int, int);
 
81
extern int vstream_fdclose(VSTREAM *);
81
82
 
82
83
#define vstream_fread(v, b, n)  vbuf_read(&(v)->buf, (b), (n))
83
84
#define vstream_fwrite(v, b, n) vbuf_write(&(v)->buf, (b), (n))