/*****************************************************************************/
/* parser.h - 21/07/99 - By Christophe LOREK - CRYO-NETWORKS                 */
/*                                                                           */
/* This is the parser header for the libHTML designed for SCOL.              */
/*                                                                           */
/* last modified on 03/08/99 By Christophe LOREK                             */
/*****************************************************************************/

#ifndef PARSER_H
#define PARSER_H

#include <stdio.h>

#include "structs.h"

#include "../x/version.h"
#include "../x/scolplugin.h"


TagStruct	*parse(char* inbuf);
int				FreeTag(TagStruct *currenttag);
int				FreeList(TagStruct *currenttag);
/*
int				FreeTree(TagStruct *currenttag);
*/

#endif