IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 4, 2004, 2:35:01 PM (22 years ago)
Author:
gusciora
Message:

psHashKeyList() tests and the stdout files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sysUtils/tst_psHash04.c

    r861 r881  
    3838    int currentId = psMemGetId();
    3939    int memLeaks        = 0;
     40    psDlist *myLinkList = NULL;
     41    psDlistElem *tmp = NULL;
    4042
    4143    printPositiveTestHeader(stdout,
     
    5052        i++;
    5153    }
     54    myLinkList = psHashKeyList(myHashTable);
     55    tmp = myLinkList->head;
     56    while (tmp != NULL) {
     57        printf("Linked List Entries: %s\n", (char *) tmp->data);
     58        tmp = tmp->next;
     59    }
    5260
    53     //
    54     // GUS: add call to psHashKeyList()
    55     //
    56     psHashKeyList();
     61    psDlistFree(myLinkList, NULL);
    5762
    5863    printFooter(stdout,
Note: See TracChangeset for help on using the changeset viewer.