#include #include #include int getchar() { return ( (*romVectorPtr->getChar)() ); } int peekchar() { return ( (*romVectorPtr->mayGet)() ); } void putchar(c) int c; { if (c == '\n') (*romVectorPtr->putChar)('\r'); (*romVectorPtr->putChar)(c); }