Changeset 71 for trunk/src/helpers/linklist.c
- Timestamp:
- May 22, 2001, 7:18:41 PM (24 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/helpers/linklist.c
r53 r71 235 235 } 236 236 237 #ifdef __ XWPMEMDEBUG__237 #ifdef __DEBUG_MALLOC_ENABLED__ 238 238 239 239 /* … … 263 263 } 264 264 265 #e lse265 #endif // __DEBUG_MALLOC_ENABLED__ 266 266 267 267 /* … … 286 286 */ 287 287 288 PLINKLIST lstCreate(BOOL fItemsFreeable) // in: invoke free() on the data288 PLINKLIST (lstCreate)(BOOL fItemsFreeable) // in: invoke free() on the data 289 289 // item pointers upon destruction? 290 290 { … … 294 294 return (pNewList); 295 295 } 296 297 #endif // __XWPMEMDEBUG__298 296 299 297 /* … … 543 541 } 544 542 545 #ifdef __ XWPMEMDEBUG__543 #ifdef __DEBUG_MALLOC_ENABLED__ 546 544 547 545 /* … … 603 601 } 604 602 605 #e lse603 #endif // __DEBUG_MALLOC_ENABLED__ 606 604 607 605 /* … … 615 613 */ 616 614 617 PLISTNODE lstAppendItem(PLINKLIST pList,615 PLISTNODE (lstAppendItem)(PLINKLIST pList, 618 616 void* pNewItemData) // in: data to store in list node 619 617 { … … 656 654 return (pNewNode); 657 655 } 658 659 #endif // __XWPMEMDEBUG__660 656 661 657 /*
Note:
See TracChangeset
for help on using the changeset viewer.