home *** CD-ROM | disk | FTP | other *** search
- /* .subt | Get and save character routines for desktop calculator */
-
- #define BUFSIZE 100
-
- char buf[BUFSIZE];
- int bufp = 0;
-
- getch()
- {
- return((bufp > 0) ? buf[--bufp] : getchar());
- }
-
- ungetch(c)
- int c;
- {
- if (bufp > BUFSIZE)
- printf("ungetch: too many characters\n");
- else
- buf[bufp++] = c
- }
-
- /* .subt < end of file, file getch.c */
-