~ubuntu-branches/ubuntu/precise/libxml-libxml-perl/precise-security

« back to all changes in this revision

Viewing changes to xpath.h

  • Committer: Bazaar Package Importer
  • Author(s): Ardo van Rangelrooij
  • Date: 2002-02-16 22:33:54 UTC
  • Revision ID: james.westby@ubuntu.com-20020216223354-8zq3wlngmkrdexns
Tags: upstream-1.31
ImportĀ upstreamĀ versionĀ 1.31

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __LIBXML_XPATH_H__
 
2
#define __LIBXML_XPATH_H__
 
3
 
 
4
#include <libxml/tree.h>
 
5
#include <libxml/xpath.h>
 
6
 
 
7
 
 
8
xmlNodeSetPtr
 
9
domXPathSelect( xmlNodePtr refNode, xmlChar * xpathstring );
 
10
 
 
11
xmlXPathObjectPtr
 
12
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring );
 
13
 
 
14
#endif