Changeset 2525 for trunk/psLib/src/xml/psXML.c
- Timestamp:
- Nov 29, 2004, 3:09:14 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/xml/psXML.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/xml/psXML.c
r2523 r2525 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1.1 1$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-11-30 0 0:34:08$11 * @version $Revision: 1.12 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-11-30 01:09:14 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 110 110 /*****************************************************************************/ 111 111 112 void p_saxEndElement(void *ctx, const xmlChar *tagName);113 void p_psInitVectorXml(void *ctx, char *tagName);114 void p_psInitMetadataItemXml(void *ctx, char *tagName);115 void p_saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts);112 static void p_saxEndElement(void *ctx, const xmlChar *tagName); 113 static void p_psInitVectorXml(void *ctx, char *tagName); 114 static void p_psInitMetadataItemXml(void *ctx, char *tagName); 115 static void p_saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts); 116 116 117 117 /** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string … … 690 690 } 691 691 692 voidsaxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts)692 static void p_saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts) 693 693 { 694 694 psU64 i = 0; … … 760 760 } 761 761 762 void p_psInitMetadataItemXml(void *ctx, char *tagName)762 static void p_psInitMetadataItemXml(void *ctx, char *tagName) 763 763 { 764 764 psBool overwrite = false; … … 906 906 907 907 908 void p_psInitVectorXml(void *ctx, char *tagName)908 static void p_psInitVectorXml(void *ctx, char *tagName) 909 909 { 910 910 bool overwrite = false; … … 1017 1017 } 1018 1018 1019 voidsaxEndElement(void *ctx, const xmlChar *tagName)1019 static void p_saxEndElement(void *ctx, const xmlChar *tagName) 1020 1020 { 1021 1021 char *psStartTagName = NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
