home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
MAGAZINE
/
MISC
/
PCTV1N1.ZIP
/
TABPROG.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1990-02-15
|
322 b
|
16 lines
/* Listing 5. Main program for C++ tab expansion */
#include "tabexp.hpp"
main()
{
int c;
/* declare a tab expander using stdin and 8-spaces */
tabexp te(stdin, 8);
do { /* loop until no more characters in input */
c = te.get();
if (c == -1) break; else putc(c, stdout);
} while(1);
}