/*
 * Program: Synonym
 * File: html_parser.h
 * Author: Cristian Draghici
 * Date: 11 Sep 2003
 *
 * $Id: html_parser.h,v 1.2 2003/10/30 14:54:10 diciu Exp $
 *
 * Licensed under the Modulo Consulting Software License
 * (see file license.txt)
 * 
 */
#ifndef _HTML_PARSER_H_INCLUDED
#define _HTML_PARSER_H_INCLUDED

int locate_end_tag(FILE *input, char * buffer, int buffer_size, int * p_column, int * p_line, long html_chunk_size);
int locate_end_tag_in_string(char *input, char * buffer, int buffer_size, int * p_column, int * p_line, long html_chunk_size);

/* structure used in the userData section of the SAX handler */
typedef struct {
	int col;
	int lin;
} tag_locator;
#endif


syntax highlighted by Code2HTML, v. 0.9.1