home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CDPD Public Domain Collection for CDTV 3
/
CDPDIII.bin
/
pd
/
programming
/
assembler
/
thesource
/
volume4
/
source
/
vectors
/
tdddconv.lha
/
tddd2ps.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-11-12
|
354 b
|
19 lines
/* tops.c - convert TTDDD file to PostScript viewing format
* - written by Glenn M. Lewis - 7/22/91
*/
static char rcs_id[] = "$Id: tops.c,v 1.3 1991/10/10 19:30:24 glewis Exp glewis $";
#include <stdio.h>
#include "ttdddlib.h"
WORLD *world;
main()
{
world = read_World(stdin);
write_PostScript(world, stdout, VIEW_ALL_FOUR);
exit(0);
}