IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 26, 2006, 3:49:05 PM (20 years ago)
Author:
drobbin
Message:

Updated psStringSplit and created/finished corresponding test.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psString.c

    r6201 r6218  
    1313 *  @author David Robbins, MHPCC
    1414 *
    15  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    16  *  @date $Date: 2006-01-26 05:31:54 $
     15 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     16 *  @date $Date: 2006-01-27 01:49:05 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "psMemory.h"
    2626#include "psError.h"
     27#include "psConstants.h"
    2728
    2829#include "psErrorText.h"
     
    168169                      const char *splitters)
    169170{
     171    PS_ASSERT_PTR_NON_NULL(string, NULL);
     172    PS_ASSERT_PTR_NON_NULL(splitters, NULL);
     173
    170174    psList *values = psListAlloc(NULL); // The list of values to return
    171175    unsigned int length = strlen(string); // The length of the string
Note: See TracChangeset for help on using the changeset viewer.