Definition:
#ifndef CHARSET_EBCDIC
#define ap_bgetc(fb) ( ((fb)->incnt == 0) ? ap_bfilbuf(fb)
: ((fb)->incnt--, *((fb)->inptr++)) )
#else
#define ap_bgetc(fb) ( ((fb)->incnt == 0) ? ap_bfilbuf(fb) \
: ((fb)->incnt--, \
(fb->flags & B_ASCII2EBCDIC) \
? os_toebcdic[(unsigned char)*((fb)->inptr++)] \
: *((fb)->inptr++)) )
#endif
Usage example:
if ((c = ap_bgetc(r->connection->client)) == CR) {
c = ap_bgetc(r->connection->client);
}
No documentation available.
Previous: ap_bflush
Next: ap_bgetflag
Table of Contents
(Routines,
Structures,
Data Cells,
Constants)