Ignore:
Timestamp:
Feb 14, 2002, 7:55:57 AM (24 years ago)
Author:
umoeller
Message:

Buncha fixes, plus Paul's screen wrap feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/helpers/linklist.c

    r136 r141  
    358358 */
    359359
    360 long lstCountItems(PLINKLIST pList)
     360long lstCountItems(const LINKLIST *pList)
    361361{
    362362    long lCount = -1;
     
    398398 */
    399399
    400 PLISTNODE lstQueryFirstNode(PLINKLIST pList)
     400PLISTNODE lstQueryFirstNode(const LINKLIST *pList)
    401401{
    402402    if (    (pList)
     
    416416 */
    417417
    418 PLISTNODE lstQueryLastNode(PLINKLIST pList)
     418PLISTNODE lstQueryLastNode(const LINKLIST *pList)
    419419{
    420420    if (    (pList)
Note: See TracChangeset for help on using the changeset viewer.