IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 17, 2005, 2:48:18 PM (21 years ago)
Author:
Paul Price
Message:

Reading in an FPA seems to be working!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/archive/scripts/src/papStuff.c

    r4092 r4309  
    22#include <string.h>
    33#include "pslib.h"
     4#include "papStuff.h"
    45
    56// Split string on given characters
     
    2324            } else {
    2425                // We're at the end of the word
    25                 char *word = psStringNCopy(&string[start], i - start);
     26                psString word = psStringNCopy(&string[start], i - start);
    2627                (void)psListAdd(values, PS_LIST_TAIL, word);
    2728                start = i + 1;
     
    3132    if (start < length) {
    3233        // Copy the last word
    33         char *word = psStringNCopy(&string[start], length - start);
     34        psString word = psStringNCopy(&string[start], length - start);
    3435        (void)psListAdd(values, PS_LIST_TAIL, word);
    3536    }
Note: See TracChangeset for help on using the changeset viewer.