blob: 82a6ff97873e05fb97532f5169dce2875412f174 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
##################################################
#
# PROJECT: xsd2c examples
# CREATED: 30.03.2003
# WRITTEN BY: Ferhat Ayaz
#
##################################################
DESCRIPTION:
This example uses a simple comlexType (Person)
to show you how to:
+ create
+ set simple variables
+ sax serialize
+ free
a xsd object in c
FILES:
ex1.c : Main program code
ex1.xsd : XML Schema
Makefile : The makefile
README : This file
After you make the program with
$>make
the following c files will be generated:
+ Person_xsd.h
+ Person_xsd.c
|