/*****************************************************************************/
/* structs.h - 02/08/99 - By Christophe LOREK - CRYO-NETWORKS                */
/*                                                                           */
/* This is header contains the structures definitions for the libHTML        */
/* designed for SCOL.                                                        */
/*                                                                           */
/* last modified on 02/08/99 By Christophe LOREK                             */
/*****************************************************************************/

#ifndef STRUCTS_H
#define STRUCTS_H

typedef struct {
	char		*name;
	char		*value;
} Param;

typedef struct mystructtag {
	char								*name;
	Param								**paramlist;
/*
	char								*inbuf;
	int									lenbuf;
*/
	char								*begin;
	char								*end;
	struct mystructtag	*fathertag;
	struct mystructtag	*brothertag;
	struct mystructtag	*sontag;
	struct mystructtag	*endtag;
	struct mystructtag	*nexttag;
} TagStruct;

#endif