words              53 gtags-parser/gctags.c struct words *words;
words             253 gtags-parser/gctags.c 		words = (struct words *)check_malloc(sizeof(struct words) * tablesize);
words             260 gtags-parser/gctags.c 			words[i].name = p;
words             263 gtags-parser/gctags.c 		qsort(words, tablesize, sizeof(struct words), cmp);
words             300 gtags-parser/gctags.c 	return strcmp(((struct words *)s1)->name, ((struct words *)s2)->name);
words             306 gtags-parser/gctags.c 	struct words tmp;
words             307 gtags-parser/gctags.c 	struct words *result;
words             309 gtags-parser/gctags.c 	if (words == NULL)
words             312 gtags-parser/gctags.c 	result = (struct words *)bsearch(&tmp, words, tablesize, sizeof(struct words), cmp);