#include
#include
#include
#include
char* file_get_content(const char *path, long *filesize) {
FILE *file = fopen(path, "rb");
if(!file) {
perror(path);
return NULL;
}
fseek(file, 0, SEEK_END);
*filesize = ftell(file);
fseek(file, 0, SEEK_SET);
char *data = malloc(*filesize);
fread(data, 1, *filesize, file);
fclose(file);
return data;
}
static int html_parse_callback(HtmlParser *html_parser, HtmlParseType parse_type, void *userdata_any) {
switch(parse_type) {
case HTML_PARSE_TAG_START:
printf("tag start: %.*s\n", (int)html_parser->tag_name.size, html_parser->tag_name.data);
break;
case HTML_PARSE_TAG_END:
printf("tag end: %.*s\n", (int)html_parser->tag_name.size, html_parser->tag_name.data);
break;
}
return 0;
}
int main() {
long filesize;
char *file_data = file_get_content("tests/hotexamples.html", &filesize);
if(!file_data) {
fprintf(stderr, "Failed to read from file: tests/hotexamples.html\n");
return 1;
}
html_parser_parse(file_data, filesize, html_parse_callback, NULL);
free(file_data);
return 0;
}