#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "xData.h"
Go to the source code of this file.
◆ xmlTextStruct
◆ xData_parseOutline()
int xData_parseOutline |
( |
FILE * |
f, |
|
|
xData_document * |
xData_doc, |
|
|
int |
outputText |
|
) |
| |
Definition at line 142 of file xDataExtras.cc.
142 {
143
144 xData_parseOutlinePrintRoot( f, &(xData_doc->
root), outputText );
145 return( 0 );
146}
◆ xData_parseReconstructXML()
Definition at line 59 of file xDataExtras.cc.
59 {
60
61 int err;
63
64 err = xData_parseReconstructXML2( &(xData_doc->
root), &XML, NULL, 0 );
65
66 if( err == 0 ) addStringToXML( &XML, (char*) "\n", -1 );
68}