15077d5121318029606a3282c3ffa73e6f8a53a2 kent Wed Mar 21 15:49:49 2018 -0700 Updating a comment on case sensitivity on slNameInList. diff --git src/inc/common.h src/inc/common.h index 200b1e3..a451167 100644 --- src/inc/common.h +++ src/inc/common.h @@ -536,31 +536,31 @@ void slNameSortCase(struct slName **pList); /* Sort slName list, ignore case. */ void slNameSort(struct slName **pList); /* Sort slName list. */ boolean slNameInList(struct slName *list, char *string); /* Return true if string is in name list -- case insensitive. */ boolean slNameInListUseCase(struct slName *list, char *string); /* Return true if string is in name list -- case sensitive. */ void *slNameFind(void *list, char *string); /* Return first element of slName list (or any other list starting - * with next/name fields) that matches string. */ + * with next/name fields) that matches string. This is case insensitive. */ int slNameFindIx(struct slName *list, char *string); /* Return index of first element of slName list (or any other * list starting with next/name fields) that matches string. * ... Return -1 if not found. */ char *slNameStore(struct slName **pList, char *string); /* Put string into list if it's not there already. * Return the version of string stored in list. */ struct slName *slNameAddHead(struct slName **pList, char *name); /* Add name to start of list and return it. */ struct slName *slNameAddTail(struct slName **pList, char *name); /* Add name to end of list (not efficient for long lists),