IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 8, 2004, 9:08:40 AM (22 years ago)
Author:
desonia
Message:

changed psDlist to be psList

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sysUtils/psHash.c

    r889 r919  
    1010 *  @author George Gusciora, MHPCC
    1111 *   
    12  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-06-07 00:32:53 $
     12 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-06-08 19:08:40 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2525#include "psAbort.h"
    2626
    27 psDlist *psHashKeyList(psHash *table)
     27psList *psHashKeyList(psHash *table)
    2828{
    2929    int i = 0;
    30     psDlist *myLinkList = NULL;
     30    psList *myLinkList = NULL;
    3131
    3232    if (table == NULL) {
     
    3434    }
    3535
    36     myLinkList = psDlistAlloc(NULL);
     36    myLinkList = psListAlloc(NULL);
    3737
    3838    for (i=0;i<table->nbucket;i++) {
    3939        if (table->buckets[i] != NULL) {
    40             psDlistAdd(myLinkList, (table->buckets[i])->key, PS_DLIST_HEAD);
     40            psListAdd(myLinkList, (table->buckets[i])->key, PS_LIST_HEAD);
    4141        }
    4242    }
Note: See TracChangeset for help on using the changeset viewer.