static void print_function(Symbol *symp) { if (symp->source) { fprintf(outfile, "%s * %s:%d %s\n", symp->name, symp->source, symp->def_line, symp->decl); } print_refs(symp->name, symp->ref_line); }
/* printlist - F.Macrides ([email protected]) * --------- * Print a text/plain list of HyperText References * in the current document. * * On entry * titles Set: if we want titles where available * Clear: we only get addresses. */ void printlist(FILE *fp, BOOLEAN titles) { int refs, hidden_links; refs = HText_sourceAnchors(HTMainText); if (refs > 0 || LYHiddenLinks == HIDDENLINKS_SEPARATE) { hidden_links = HText_HiddenLinkCount(HTMainText); if (refs > 0 || hidden_links > 0) { fprintf(fp, "\n%s\n\n", gettext("References")); if (LYHiddenLinks == HIDDENLINKS_IGNORE) hidden_links = 0; if (hidden_links > 0) { fprintf(fp, " %s\n", gettext("Visible links")); } print_refs(fp, titles, refs); if (hidden_links > 0) { print_hidden_refs(fp, refs, hidden_links); } } } LYPrintImgMaps(fp); return; }