IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7023


Ignore:
Timestamp:
May 1, 2006, 1:14:21 PM (20 years ago)
Author:
jhoblitt
Message:

switch to new psStringSplit() prototype

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pzgetexp.c

    r6976 r7023  
    108108    PS_ASSERT_PTR_NON_NULL(str, NULL);
    109109
    110     psList *doc = psStringSplit(str, "\n");
     110    psList *doc = psStringSplit(str, "\n", false);
    111111
    112112    psListIterator *lineCursor = psListIteratorAlloc(doc, 0, false);
     
    119119
    120120        // split line into tokens
    121         psList *tokens = psStringSplit(line, " ");
     121        psList *tokens = psStringSplit(line, " ", false);
    122122
    123123        // check to see if this line is a comment (or if the first token is
  • trunk/ippTools/src/pzgetimfiles.c

    r6976 r7023  
    151151    PS_ASSERT_PTR_NON_NULL(str, NULL);
    152152
    153     psList *doc = psStringSplit(str, "\n");
     153    psList *doc = psStringSplit(str, "\n", false);
    154154
    155155    psListIterator *lineCursor = psListIteratorAlloc(doc, 0, false);
     
    162162
    163163        // split line into tokens
    164         psList *tokens = psStringSplit(line, " ");
     164        psList *tokens = psStringSplit(line, " ", false);
    165165
    166166        // 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.