Changeset 2014
- Timestamp:
- Oct 7, 2004, 2:48:01 PM (22 years ago)
- Location:
- trunk/psLib
- Files:
-
- 6 edited
-
src/astronomy/psMetadataIO.c (modified) (3 diffs)
-
src/collections/psMetadataIO.c (modified) (3 diffs)
-
src/types/psMetadataConfig.c (modified) (3 diffs)
-
src/xml/psXML.c (modified) (3 diffs)
-
test/astronomy/tst_psMetadata_05.c (modified) (1 diff)
-
test/collections/tst_psMetadata_05.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/psMetadataIO.c
r2011 r2014 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-10-0 7 20:49:57$11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-10-08 00:43:12 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 103 103 104 104 /** 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. */ 106 106 bool ignoreLine(char *inString) 107 107 { … … 118 118 119 119 /** 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. */ 122 121 char *cleanString(char *inString, int sLen) 123 122 { -
trunk/psLib/src/collections/psMetadataIO.c
r2011 r2014 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-10-0 7 20:49:57$11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-10-08 00:43:12 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 103 103 104 104 /** 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. */ 106 106 bool ignoreLine(char *inString) 107 107 { … … 118 118 119 119 /** 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. */ 122 121 char *cleanString(char *inString, int sLen) 123 122 { -
trunk/psLib/src/types/psMetadataConfig.c
r2011 r2014 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-10-0 7 20:49:57$11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-10-08 00:43:12 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 103 103 104 104 /** 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. */ 106 106 bool ignoreLine(char *inString) 107 107 { … … 118 118 119 119 /** 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. */ 122 121 char *cleanString(char *inString, int sLen) 123 122 { -
trunk/psLib/src/xml/psXML.c
r2011 r2014 9 9 * @author Ross Harman, MHPCC 10 10 * 11 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2004-10-0 7 20:49:57$11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2004-10-08 00:43:12 $ 13 13 * 14 14 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 103 103 104 104 /** 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. */ 106 106 bool ignoreLine(char *inString) 107 107 { … … 118 118 119 119 /** 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. */ 122 121 char *cleanString(char *inString, int sLen) 123 122 { -
trunk/psLib/test/astronomy/tst_psMetadata_05.c
r1843 r2014 7 7 * This test driver contains the following tests for psMetadata: 8 8 * 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 10 21 * 11 22 * @author Ross Harman, MHPCC 12 23 * 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 $ 15 26 * 16 27 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii -
trunk/psLib/test/collections/tst_psMetadata_05.c
r1843 r2014 7 7 * This test driver contains the following tests for psMetadata: 8 8 * 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 10 21 * 11 22 * @author Ross Harman, MHPCC 12 23 * 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 $ 15 26 * 16 27 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii
Note:
See TracChangeset
for help on using the changeset viewer.
