Changeset 7023
- Timestamp:
- May 1, 2006, 1:14:21 PM (20 years ago)
- Location:
- trunk/ippTools/src
- Files:
-
- 2 edited
-
pzgetexp.c (modified) (2 diffs)
-
pzgetimfiles.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippTools/src/pzgetexp.c
r6976 r7023 108 108 PS_ASSERT_PTR_NON_NULL(str, NULL); 109 109 110 psList *doc = psStringSplit(str, "\n" );110 psList *doc = psStringSplit(str, "\n", false); 111 111 112 112 psListIterator *lineCursor = psListIteratorAlloc(doc, 0, false); … … 119 119 120 120 // split line into tokens 121 psList *tokens = psStringSplit(line, " " );121 psList *tokens = psStringSplit(line, " ", false); 122 122 123 123 // check to see if this line is a comment (or if the first token is -
trunk/ippTools/src/pzgetimfiles.c
r6976 r7023 151 151 PS_ASSERT_PTR_NON_NULL(str, NULL); 152 152 153 psList *doc = psStringSplit(str, "\n" );153 psList *doc = psStringSplit(str, "\n", false); 154 154 155 155 psListIterator *lineCursor = psListIteratorAlloc(doc, 0, false); … … 162 162 163 163 // split line into tokens 164 psList *tokens = psStringSplit(line, " " );164 psList *tokens = psStringSplit(line, " ", false); 165 165 166 166 // check to see if this line is a comment (or if the first token is
Note:
See TracChangeset
for help on using the changeset viewer.
