~ubuntu-branches/ubuntu/lucid/libxml-libxml-perl/lucid

« back to all changes in this revision

Viewing changes to xpath.h

  • Committer: Bazaar Package Importer
  • Author(s): gregor herrmann
  • Date: 2009-05-31 14:36:13 UTC
  • mfrom: (4.1.7 jaunty)
  • Revision ID: james.westby@ubuntu.com-20090531143613-xxpnwmrz62kwtejq
Tags: 1.69.ds-2
* Remove Florian Ragwitz from Uploaders (closes: #523275).
* Set Standards-Version to 3.8.1 (no changes).
* Remove duplicate fields from debian/control.
* Minimize debian/rules, bump quilt and debhelper build dependencies.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
domXPathSelect( xmlNodePtr refNode, xmlChar * xpathstring );
12
12
 
13
13
xmlXPathObjectPtr
14
 
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring );
 
14
domXPathFind( xmlNodePtr refNode, xmlChar * xpathstring, int to_bool );
 
15
 
 
16
xmlNodeSetPtr
 
17
domXPathCompSelect( xmlNodePtr refNode, xmlXPathCompExprPtr comp );
 
18
 
 
19
xmlXPathObjectPtr
 
20
domXPathCompFind( xmlNodePtr refNode, xmlXPathCompExprPtr comp, int to_bool );
15
21
 
16
22
xmlNodeSetPtr
17
23
domXPathSelectCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring );
18
24
 
19
25
xmlXPathObjectPtr
20
 
domXPathFindCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring );
 
26
domXPathFindCtxt( xmlXPathContextPtr ctxt, xmlChar * xpathstring, int to_bool );
 
27
 
 
28
xmlXPathObjectPtr
 
29
domXPathCompFindCtxt( xmlXPathContextPtr ctxt, xmlXPathCompExprPtr comp, int to_bool );
21
30
 
22
31
#endif