Home
last modified time | relevance | path

Searched refs:tmbuf (Results 1 – 5 of 5) sorted by relevance

/original-bsd/games/larn/
H A Dhelp.c17 char tmbuf[128]; /* intermediate translation buffer when not a VT100 */ in help() local
28 { tmcapcnv(tmbuf,lgetl()); lprcat(tmbuf); } /* intercept \33's */ in help()
52 char tmbuf[128]; /* intermediate translation buffer when not a VT100 */ in welcome() local
60 { tmcapcnv(tmbuf,lgetl()); lprcat(tmbuf); } /* intercept \33's */ in welcome()
/original-bsd/local/ditroff/ditroff.okeeffe/troff/
H A Dn5.c384 char tmbuf[NTM]; local
390 if ((tmbuf[i++] = getch()) == '\n')
393 tmbuf[i++] = '\n';
394 tmbuf[i] = 0;
396 fdprintf(stderr, "%s", tmbuf);
/original-bsd/local/ditroff/ditroff.van/
H A Dn5.c384 char tmbuf[NTM]; local
390 if ((tmbuf[i++] = getch()) == '\n')
393 tmbuf[i++] = '\n';
394 tmbuf[i] = 0;
396 fdprintf(stderr, "%s", tmbuf);
/original-bsd/local/ditroff/ditroff.okeeffe/
H A Dn5.c384 char tmbuf[NTM]; local
390 if ((tmbuf[i++] = getch()) == '\n')
393 tmbuf[i++] = '\n';
394 tmbuf[i] = 0;
396 fdprintf(stderr, "%s", tmbuf);
/original-bsd/old/roff/common_source/
H A Dn5.c362 char tmbuf[NTM]; local
367 for(i=0; i<NTM-2;)if((tmbuf[i++]=getch()) == '\n')break;
368 if(i == NTM-2)tmbuf[i++] = '\n';
369 tmbuf[i] = 0;
370 prstrfl(tmbuf);