suffix 437 gozilla/gozilla.c static const char *suffix[] = {".html", ".htm"}; suffix 439 gozilla/gozilla.c int i, lim = sizeof(suffix)/sizeof(char *); suffix 460 gozilla/gozilla.c strbuf_puts(sb, suffix[i]); suffix 477 gozilla/gozilla.c strbuf_puts(sb, suffix[i]); suffix 272 gtags-parser/gctags.c const char *lang, *suffix; suffix 276 gtags-parser/gctags.c suffix = locatestring(argv[0], ".", MATCH_LAST); suffix 277 gtags-parser/gctags.c if (!suffix) suffix 279 gtags-parser/gctags.c lang = decide_lang(suffix); suffix 283 gtags-parser/gctags.c fprintf(stderr, "suffix '%s' assumed language '%s'.\n", suffix, lang); suffix 449 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 465 htags/common.c if (suffix) { suffix 467 htags/common.c strbuf_puts(sb, suffix); suffix 500 htags/common.c gen_href_begin(const char *dir, const char *file, const char *suffix, const char *key) suffix 502 htags/common.c return gen_href_begin_with_title_target(dir, file, suffix, key, NULL, NULL); suffix 508 htags/common.c gen_href_begin_with_title(const char *dir, const char *file, const char *suffix, const char *key, const char *title) suffix 510 htags/common.c return gen_href_begin_with_title_target(dir, file, suffix, key, title, NULL); suffix 473 htags/fileindex.c const char *suffix, *parent; suffix 478 htags/fileindex.c suffix = normal_suffix; suffix 481 htags/fileindex.c suffix = HTML; suffix 483 htags/fileindex.c fputs(gen_href_begin_with_title(NULL, parent, suffix, NULL, "Parent Directory"), op); suffix 509 htags/fileindex.c const char *parent, *suffix; suffix 517 htags/fileindex.c suffix = normal_suffix; suffix 520 htags/fileindex.c suffix = HTML; suffix 528 htags/fileindex.c fputs(gen_href_begin_with_title(NULL, parent, suffix, NULL, "Parent Directory"), op); suffix 574 htags/fileindex.c const char *lang, *suffix, *text_icon; suffix 576 htags/fileindex.c if ((suffix = locatestring(path, ".", MATCH_LAST)) != NULL suffix 577 htags/fileindex.c && (lang = decide_lang(suffix)) != NULL suffix 766 htags/fileindex.c const char *last, *lang, *suffix; suffix 772 htags/fileindex.c if ((suffix = locatestring(ptable.part[PART_PATH].start, ".", MATCH_LAST)) != NULL suffix 773 htags/fileindex.c && (lang = decide_lang(suffix)) != NULL suffix 364 htags/src2html.c const char *dir, *file, *suffix = NULL; suffix 387 htags/src2html.c suffix = HTML; suffix 389 htags/src2html.c strbuf_puts(outbuf, gen_href_begin_with_title(dir, file, suffix, NULL, tooltip(type, -1, count))); suffix 770 htags/src2html.c const char *dir, *file, *suffix, *key, *title; suffix 780 htags/src2html.c suffix = HTML; suffix 796 htags/src2html.c suffix = HTML; suffix 800 htags/src2html.c fputs(gen_href_begin_with_title(dir, file, suffix, key, title), out); suffix 836 htags/src2html.c const char *suffix = locatestring(src, ".", MATCH_LAST); suffix 843 htags/src2html.c if (suffix) suffix 844 htags/src2html.c lang = decide_lang(suffix); suffix 80 libutil/langmap.c decide_lang(const char *suffix) suffix 89 libutil/langmap.c if (!strcmp(suffix, ".h") && getenv("GTAGSFORCECPP") != NULL) suffix 97 libutil/langmap.c if (match_suffix_list(suffix, list)) suffix 109 libutil/langmap.c match_suffix_list(const char *suffix, const char *list) suffix 114 libutil/langmap.c if ((p = locatestring(list, suffix, MATCH_AT_FIRST suffix 56 libutil/makepath.c makepath(const char *dir, const char *file, const char *suffix) suffix 77 libutil/makepath.c if (suffix) { suffix 78 libutil/makepath.c if (*suffix != '.') suffix 80 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));