IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 2014


Ignore:
Timestamp:
Oct 7, 2004, 2:48:01 PM (22 years ago)
Author:
harman
Message:

Changed comments

Location:
trunk/psLib
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psMetadataIO.c

    r2011 r2014  
    99*  @author Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-10-07 20:49:57 $
     11*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-10-08 00:43:12 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    103103
    104104/** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
    105  *  must * be null terminated. */
     105 *  must be null terminated. */
    106106bool ignoreLine(char *inString)
    107107{
     
    118118
    119119/** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
    120  *  terminated copy of the original input string.
    121  */
     120 *  terminated copy of the original input string. */
    122121char *cleanString(char *inString, int sLen)
    123122{
  • trunk/psLib/src/collections/psMetadataIO.c

    r2011 r2014  
    99*  @author Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-10-07 20:49:57 $
     11*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-10-08 00:43:12 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    103103
    104104/** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
    105  *  must * be null terminated. */
     105 *  must be null terminated. */
    106106bool ignoreLine(char *inString)
    107107{
     
    118118
    119119/** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
    120  *  terminated copy of the original input string.
    121  */
     120 *  terminated copy of the original input string. */
    122121char *cleanString(char *inString, int sLen)
    123122{
  • trunk/psLib/src/types/psMetadataConfig.c

    r2011 r2014  
    99*  @author Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-10-07 20:49:57 $
     11*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-10-08 00:43:12 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    103103
    104104/** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
    105  *  must * be null terminated. */
     105 *  must be null terminated. */
    106106bool ignoreLine(char *inString)
    107107{
     
    118118
    119119/** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
    120  *  terminated copy of the original input string.
    121  */
     120 *  terminated copy of the original input string. */
    122121char *cleanString(char *inString, int sLen)
    123122{
  • trunk/psLib/src/xml/psXML.c

    r2011 r2014  
    99*  @author Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2004-10-07 20:49:57 $
     11*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2004-10-08 00:43:12 $
    1313*
    1414*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    103103
    104104/** Determines if a line is blank (whitespace only) or a commentline. It returns true if so. The input string
    105  *  must * be null terminated. */
     105 *  must be null terminated. */
    106106bool ignoreLine(char *inString)
    107107{
     
    118118
    119119/** Removes leading and trailing whitespace and # characters from a string. The cleaned string is a new null
    120  *  terminated copy of the original input string.
    121  */
     120 *  terminated copy of the original input string. */
    122121char *cleanString(char *inString, int sLen)
    123122{
  • trunk/psLib/test/astronomy/tst_psMetadata_05.c

    r1843 r2014  
    77*  This test driver contains the following tests for psMetadata:
    88*     Test A - Allocate metadata and items
    9 *     Test I - Free psMetadata
     9*     Test B - Set iterator at second index
     10*     Test C - Get next item at index
     11*     Test D - Get next item at index and string
     12*     Test E - Get previous item at index
     13*     Test F - Write metadata item to file
     14*     Test G - Attempt to use null metadata with setIterator
     15*     Test H - Attempt to use null metadata with getNext
     16*     Test I - Attempt to use null metadata with getPrevious
     17*     Test J - Attempt to use null file with itemPrint
     18*     Test K - Attempt to use null format with itemPrint
     19*     Test L - Attempt to use null item with itemPrint
     20*     Test M - Free psMetadata
    1021*
    1122*  @author  Ross Harman, MHPCC
    1223*
    13 *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
    14 *  @date  $Date: 2004-09-21 23:24:42 $
     24*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
     25*  @date  $Date: 2004-10-08 00:48:01 $
    1526*
    1627*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
  • trunk/psLib/test/collections/tst_psMetadata_05.c

    r1843 r2014  
    77*  This test driver contains the following tests for psMetadata:
    88*     Test A - Allocate metadata and items
    9 *     Test I - Free psMetadata
     9*     Test B - Set iterator at second index
     10*     Test C - Get next item at index
     11*     Test D - Get next item at index and string
     12*     Test E - Get previous item at index
     13*     Test F - Write metadata item to file
     14*     Test G - Attempt to use null metadata with setIterator
     15*     Test H - Attempt to use null metadata with getNext
     16*     Test I - Attempt to use null metadata with getPrevious
     17*     Test J - Attempt to use null file with itemPrint
     18*     Test K - Attempt to use null format with itemPrint
     19*     Test L - Attempt to use null item with itemPrint
     20*     Test M - Free psMetadata
    1021*
    1122*  @author  Ross Harman, MHPCC
    1223*
    13 *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
    14 *  @date  $Date: 2004-09-21 23:24:42 $
     24*  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
     25*  @date  $Date: 2004-10-08 00:48:01 $
    1526*
    1627*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note: See TracChangeset for help on using the changeset viewer.