IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 29, 2004, 3:09:14 PM (22 years ago)
Author:
harman
Message:

Changed scope of private functions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/xml/psXML.c

    r2523 r2525  
    99*  @author Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-11-30 00:34:08 $
     11*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-11-30 01:09:14 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    110110/*****************************************************************************/
    111111
    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);
     112static void p_saxEndElement(void *ctx, const xmlChar *tagName);
     113static void p_psInitVectorXml(void *ctx, char *tagName);
     114static void p_psInitMetadataItemXml(void *ctx, char *tagName);
     115static void p_saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts);
    116116
    117117/** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
     
    690690}
    691691
    692 void saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts)
     692static void p_saxStartElement(void *ctx, const xmlChar *tagName, const xmlChar **atts)
    693693{
    694694    psU64 i = 0;
     
    760760}
    761761
    762 void p_psInitMetadataItemXml(void *ctx, char *tagName)
     762static void p_psInitMetadataItemXml(void *ctx, char *tagName)
    763763{
    764764    psBool overwrite = false;
     
    906906
    907907
    908 void p_psInitVectorXml(void *ctx, char *tagName)
     908static void p_psInitVectorXml(void *ctx, char *tagName)
    909909{
    910910    bool overwrite = false;
     
    10171017}
    10181018
    1019 void saxEndElement(void *ctx, const xmlChar *tagName)
     1019static void p_saxEndElement(void *ctx, const xmlChar *tagName)
    10201020{
    10211021    char *psStartTagName = NULL;
Note: See TracChangeset for help on using the changeset viewer.