From 35a201cc8ef0c3f5b2df88d2e528aabee1048348 Mon Sep 17 00:00:00 2001 From: Wojtek Kosior Date: Fri, 30 Apr 2021 18:47:09 +0200 Subject: Initial/Final commit --- libxml2-2.9.10/doc/tutorial/ar01s02.html | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libxml2-2.9.10/doc/tutorial/ar01s02.html (limited to 'libxml2-2.9.10/doc/tutorial/ar01s02.html') diff --git a/libxml2-2.9.10/doc/tutorial/ar01s02.html b/libxml2-2.9.10/doc/tutorial/ar01s02.html new file mode 100644 index 0000000..1e30a98 --- /dev/null +++ b/libxml2-2.9.10/doc/tutorial/ar01s02.html @@ -0,0 +1,14 @@ +Data Types

Data Types

Libxml declares a number of data types we + will encounter repeatedly, hiding the messy stuff so you do not have to deal + with it unless you have some specific need.

+

+xmlChar

A basic replacement for char, a byte in a UTF-8 encoded + string. If your data uses another encoding, it must be converted to + UTF-8 for use with libxml's + functions. More information on encoding is available on the libxml encoding support web page.

+ xmlDoc

A structure containing the tree created by a parsed doc. xmlDocPtr + is a pointer to the structure.

+xmlNodePtr + and xmlNode

A structure containing a single node. xmlNodePtr + is a pointer to the structure, and is used in traversing the document tree.

+

-- cgit v1.2.3