#ifndef _PARSER_H_
#define _PARSER_H_

/* PURPOSE:
 *    PARSER.H: Public interface to the Parser.
 * HISTORY:
 *    Ian D. Allen   idallen@freenet.carleton.ca
 */

#include "mem.h"

#include <stdio.h>

	void
parser(
	FILE *infd,       /* IN: open input file descriptor to read */
	char *infname,    /* IN: name of open input stream */
	FILE *outfd,      /* IN: open output file descriptor to write */
	char *outfname    /* IN: name of open output stream */
);

#endif /*_PARSER_H_*/
