suffix            447 gozilla/gozilla.c 	static const char *suffix[] = {".html", ".htm"};
suffix            449 gozilla/gozilla.c 	int i, lim = sizeof(suffix)/sizeof(char *);
suffix            470 gozilla/gozilla.c 			strbuf_puts(sb, suffix[i]);
suffix            487 gozilla/gozilla.c 		strbuf_puts(sb, suffix[i]);
suffix            497 htags/common.c gen_href_begin_with_title_target(const char *dir, const char *file, const char *suffix, const char *key, const char *title, const char *target)
suffix            513 htags/common.c 		if (suffix) {
suffix            515 htags/common.c 			strbuf_puts(sb, suffix);
suffix            554 htags/common.c gen_href_begin(const char *dir, const char *file, const char *suffix, const char *key)
suffix            556 htags/common.c 	return gen_href_begin_with_title_target(dir, file, suffix, key, NULL, NULL);
suffix            565 htags/common.c gen_href_begin_with_title(const char *dir, const char *file, const char *suffix, const char *key, const char *title)
suffix            567 htags/common.c 	return gen_href_begin_with_title_target(dir, file, suffix, key, title, NULL);
suffix            525 htags/fileindex.c 		const char *suffix, *parent;
suffix            530 htags/fileindex.c 			suffix = normal_suffix;
suffix            533 htags/fileindex.c 			suffix = HTML;
suffix            535 htags/fileindex.c 		fputs(gen_href_begin_with_title(NULL, parent, suffix, NULL, "Parent Directory"), op);
suffix            561 htags/fileindex.c 	const char *parent, *suffix;
suffix            570 htags/fileindex.c 		suffix = normal_suffix;
suffix            573 htags/fileindex.c 		suffix = HTML;
suffix            581 htags/fileindex.c 	fputs(gen_href_begin_with_title(NULL, parent, suffix, NULL, "Parent Directory"), op);
suffix            627 htags/fileindex.c 		const char *lang, *suffix, *text_icon;
suffix            629 htags/fileindex.c 		if ((suffix = locatestring(path, ".", MATCH_LAST)) != NULL
suffix            630 htags/fileindex.c 		    && (lang = decide_lang(suffix)) != NULL
suffix            827 htags/fileindex.c 		const char *last, *lang, *suffix;
suffix            833 htags/fileindex.c 		if ((suffix = locatestring(ptable.part[PART_PATH].start, ".", MATCH_LAST)) != NULL
suffix            834 htags/fileindex.c 		    && (lang = decide_lang(suffix)) != NULL
suffix            458 htags/src2html.c 			const char *dir, *file, *suffix = NULL;
suffix            491 htags/src2html.c 				suffix = HTML;
suffix            493 htags/src2html.c 			strbuf_puts(outbuf, gen_href_begin_with_title(dir, file, suffix, NULL, tooltip(type, -1, count)));
suffix            916 htags/src2html.c 			const char *dir, *file, *suffix, *key, *title;
suffix            926 htags/src2html.c 				suffix = HTML;
suffix            942 htags/src2html.c 				suffix = HTML;
suffix            946 htags/src2html.c 			fputs(gen_href_begin_with_title(dir, file, suffix, key, title), out);
suffix            982 htags/src2html.c 			const char *suffix = locatestring(src, ".", MATCH_LAST);
suffix            989 htags/src2html.c 			if (suffix)
suffix            990 htags/src2html.c 				lang = decide_lang(suffix);
suffix            341 libparser/parser.c 	const char *lang, *suffix;
suffix            346 libparser/parser.c 	suffix = locatestring(path, ".", MATCH_LAST);
suffix            347 libparser/parser.c 	if (suffix == NULL)
suffix            349 libparser/parser.c 	lang = decide_lang(suffix);
suffix            359 libparser/parser.c 		fprintf(stderr, "\tsuffix:   |%s|\n", suffix);
suffix             87 libutil/langmap.c decide_lang(const char *suffix)
suffix             96 libutil/langmap.c 	if (!strcmp(suffix, ".h") && getenv("GTAGSFORCECPP") != NULL)
suffix            104 libutil/langmap.c 		if (match_suffix_list(suffix, list))
suffix            116 libutil/langmap.c match_suffix_list(const char *suffix, const char *list)
suffix            121 libutil/langmap.c 		if ((p = locatestring(list, suffix, MATCH_AT_FIRST
suffix             70 libutil/makepath.c makepath(const char *dir, const char *file, const char *suffix)
suffix             91 libutil/makepath.c 	if (suffix) {
suffix             92 libutil/makepath.c 		if (*suffix != '.')
suffix             94 libutil/makepath.c 		strbuf_puts(sb, suffix);
suffix             44 libutil/usable.c static const char *suffix[] = {".exe", ".com", ".bat",};
suffix             63 libutil/usable.c 	int i, lim = sizeof(suffix)/sizeof(char *);
suffix            100 libutil/usable.c 			if (test("f", makepath(dir, command, suffix[i]))) {
suffix            101 libutil/usable.c 				strlimcpy(path, makepath(dir, command, suffix[i]), sizeof(path));