642a3085cf1b7a959ab994ac575a55adb7e3a445 tdreszer Tue Oct 5 16:01:40 2010 -0700 Needed to sort slPair diff --git src/inc/common.h src/inc/common.h index 9b2752b..a87a51a 100644 --- src/inc/common.h +++ src/inc/common.h @@ -645,6 +645,15 @@ * name1=val1 name2=val2 ... * Returns NULL if parse error */ +int slPairCmpCase(const void *va, const void *vb); +/* Compare two slPairs, ignore case. */ + +void slPairSortCase(struct slPair **pList); +/* Sort slPair list, ignore case. */ + +int slPairCmp(const void *va, const void *vb); +/* Compare two slPairs. */ + void gentleFree(void *pt); /* check pointer for NULL before freeing. * (Actually plain old freeMem does that these days.) */