Searched refs:VBUF_GET (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dvbuf.c11 /* int VBUF_GET(bp)
73 /* VBUF_GET() returns the next character from the specified buffer,
74 /* or VBUF_EOF when none is available. VBUF_GET() is an unsafe macro
125 /* get_ready() is called when VBUF_GET() detects a buffer-empty condition.
180 ((bp->flags |= VBUF_FLAG_EOF), VBUF_EOF) : VBUF_GET(bp));
200 if ((buf[count] = VBUF_GET(bp)) < 0)
H A Dvbuf.h17 * The VBUF buffer is defined by 1) its structure, by 2) the VBUF_GET() and
87 #define VBUF_GET(v) ((v)->cnt < 0 ? ++(v)->cnt, \ macro
H A Dvstream.h115 #define VSTREAM_GETC(vp) VBUF_GET(&(vp)->buf)

Completed in 153 milliseconds