#ifndef lint
static char *sccsid = "@(#)seechars.c	1.2 (UKC) 22/7/86";
#endif  lint

/*
 *	Quickly show the characters in charraster on the screen.
 *	Tool for dbbc, the ditroff previewer
 */

#include <stdio.h>
#include "bbcplot.h"
#include "types.h"

extern struct charraster charraster[];

main()
{
	register int i;

	bbcopen();

	for (i=0; charraster[i].framboozle != 0; i++) {
		bbcplot(MOVE|ABS, (i&31)*32+64, 512 - (i&~31)*2);
		bbcdchar(224, charraster[i].grid);
		bbcbyte(224);
	}
	bbcwait();
	bbcclose();
	exit(0);
}
