DEBSOURCES
Skip Quicknav
sources / c%2B%2B-annotations / 13.02.02-1 / yo / polymorphism / examples / uflow.cc
123456789
int StreamBuf::uflow() { if (gptr() == egptr() and underflow() == EOF) return EOF; unsigned char ch = *gptr(); gbump(1); return ch; }