6b1004fac96e92ac287422b374aed8d7a5f13277 kent Sun Jan 19 18:06:59 2014 -0800 Fixing typo in comment. diff --git src/inc/common.h src/inc/common.h index 2f8612a..c919b58 100644 --- src/inc/common.h +++ src/inc/common.h @@ -426,31 +426,31 @@ void slUniqify(void *pList, CmpFunction *compare, void (*free)()); /* Return sorted list with duplicates removed. * Compare should be same type of function as slSort's compare (taking * pointers to pointers to elements. Free should take a simple * pointer to dispose of duplicate element, and can be NULL. */ void slSortMerge(void *pA, void *b, CmpFunction *compare); // Merges and sorts a pair of singly linked lists using slSort. void slSortMergeUniq(void *pA, void *b, CmpFunction *compare, void (*free)()); // Merges and sorts a pair of singly linked lists leaving only unique // items via slUniqufy. duplicate itens are defined by the compare routine // returning 0. If free is provided, items dropped from list can disposed of. boolean slRemoveEl(void *vpList, void *vToRemove); -/* Remove element from doubly linked list. Usage: +/* Remove element from singly linked list. Usage: * slRemove(&list, el); * Returns TRUE if element in list. */ void slFreeList(void *listPt); /* Free all elements in list and set list pointer to null. * Usage: * slFreeList(&list); */ /******* slInt - an int on a list - the first of many singly linked list structures *******/ struct slInt /* List of integers. */ { struct slInt *next; /* Next in list. */