1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

Work done on the plane, ready to release libxml2-2.0.0, Daniel

This commit is contained in:
Daniel Veillard
2000-04-03 19:48:13 +00:00
parent ec30341c5c
commit 361d845de0
64 changed files with 820 additions and 315 deletions

14
xpath.c
View File

@ -19,6 +19,9 @@
#include "config.h"
#endif
#include "xmlversion.h"
#ifdef LIBXML_XPATH_ENABLED
#include <stdio.h>
#include <string.h>
@ -41,11 +44,11 @@
#include <ctype.h>
#endif
#include "xmlmemory.h"
#include "tree.h"
#include "valid.h"
#include "xpath.h"
#include "parserInternals.h"
#include <libxml/xmlmemory.h>
#include <libxml/tree.h>
#include <libxml/valid.h>
#include <libxml/xpath.h>
#include <libxml/parserInternals.h>
/* #define DEBUG */
/* #define DEBUG_STEP */
@ -4579,3 +4582,4 @@ xmlXPathEvalExpression(const xmlChar *str, xmlXPathContextPtr ctxt) {
return(res);
}
#endif /* LIBXML_XPATH_ENABLED */