Changeset 6989 for trunk/psLib/src/sys/psString.c
- Timestamp:
- Apr 25, 2006, 4:19:23 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sys/psString.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/sys/psString.c
r6962 r6989 13 13 * @author David Robbins, MHPCC 14 14 * 15 * @version $Revision: 1.2 6$ $Name: not supported by cvs2svn $16 * @date $Date: 2006-04-2 3 01:08:34$15 * @version $Revision: 1.27 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2006-04-26 02:19:23 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 177 177 const char *splitters) 178 178 { 179 PS_ASSERT_PTR_NON_NULL(splitters, NULL);180 179 psList *values = psListAlloc(NULL); // The list of values to return 181 if (string == NULL) 182 return values; 180 PS_ASSERT_PTR_NON_NULL(string, values); 181 PS_ASSERT_PTR_NON_NULL(splitters, values); 182 // if (string == NULL) 183 // return values; 183 184 184 185 unsigned int length = strlen(string); // The length of the string
Note:
See TracChangeset
for help on using the changeset viewer.
