/* tovort.c - convert TTDDD file to Vort input file
 *          - written by Glenn M. Lewis - 10/11/91
 */

static char rcs_id[] = "$Id: tovort.c,v 1.1 1991/10/12 06:39:07 glewis Exp glewis $";

#include <stdio.h>
#include "ttdddlib.h"

WORLD *world;

main()
{
	world = read_World(stdin);
	write_Vort(world, stdout);
	exit(0);
}

