forked from KolibriOS/kolibrios
bb2bbc6b91
git-svn-id: svn://kolibrios.org@4364 a494cfbc-eb01-0410-851d-a64ba20cac60
22 lines
516 B
C
22 lines
516 B
C
/*
|
|
* This file is part of libdom test suite.
|
|
* Licensed under the MIT License,
|
|
* http://www.opensource.org/licenses/mit-license.php
|
|
* Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
|
|
*/
|
|
|
|
#ifndef domts_h_
|
|
#define domts_h_
|
|
|
|
#include <domtscondition.h>
|
|
#include <domtsasserts.h>
|
|
#include <list.h>
|
|
#include <foreach.h>
|
|
#include <utils.h>
|
|
#include <comparators.h>
|
|
|
|
dom_document *load_xml(const char *file, bool willBeModified);
|
|
dom_document *load_html(const char *file, bool willBeModified);
|
|
|
|
#endif
|