/* makeraw.c - By Daniel Rice, 11/91.
   Permission is granted for any use of this code. */

/* Strip out everything but the Hebrew text itself.  Usage:

	makeraw < torah > torah.raw
*/

#include <stdio.h>

main ()

{
	int c;

	while ((c = getchar()) != EOF) {
		if (c >= 0200 && c <= 0232)
			putc (c, stdout);
		else if (c == ')')
			while ((c = getchar()) != '(')
				; /* Strip out Qere readings. */
	}
}
