Blame doc/tutorial/ar01s02.html

Packit 423ecb
<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Data Types</title><meta name="generator" content="DocBook XSL Stylesheets V1.61.2"><link rel="home" href="index.html" title="Libxml Tutorial"><link rel="up" href="index.html" title="Libxml Tutorial"><link rel="previous" href="index.html" title="Libxml Tutorial"><link rel="next" href="ar01s03.html" title="Parsing the file"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">

Data Types

Libxml declares a number of data types we

Packit 423ecb
    will encounter repeatedly, hiding the messy stuff so you do not have to deal
Packit 423ecb
    with it unless you have some specific need.

Packit 423ecb
      

Packit 423ecb
xmlChar

A basic replacement for char, a byte in a UTF-8 encoded

Packit 423ecb
	    string. If your data uses another encoding, it must be converted to
Packit 423ecb
	      UTF-8 for use with libxml's
Packit 423ecb
	      functions. More information on encoding is available on the libxml encoding support web page.

Packit 423ecb
	    xmlDoc

A structure containing the tree created by a parsed doc. xmlDocPtr

Packit 423ecb
	  is a pointer to the structure.

Packit 423ecb
xmlNodePtr
Packit 423ecb
	    and xmlNode

A structure containing a single node. xmlNodePtr

Packit 423ecb
	  is a pointer to the structure, and is used in traversing the document tree.

Packit 423ecb
    

</body></html>