Lines Matching defs:ostream
118 void writelines (char **linearray, int nlines, FILE *ostream);
746 FILE *ostream = stdout;
839 ostream = fopen (outfile, "w");
840 if (!ostream)
844 writelines (linearray, nextline - linearray, ostream);
846 fclose (ostream);
977 indexify (char *line, FILE *ostream)
1024 fputs ("}\n", ostream);
1034 fprintf (ostream, "\\initial {");
1035 fwrite (initial, 1, initiallength, ostream);
1036 fputs ("}\n", ostream);
1051 fputs ("\\entry {", ostream);
1053 fputs ("\\primary {", ostream);
1054 fwrite (primary, primarylength, 1, ostream);
1057 fputs ("}{", ostream);
1061 fputs ("}\n", ostream);
1088 fputs ("}\n", ostream);
1093 fputs ("\\secondary {", ostream);
1094 fwrite (secondary, secondarylength, 1, ostream);
1095 fputs ("}{", ostream);
1111 fputs (", ", ostream); /* Punctuate first, if this is not the first. */
1112 fwrite (pagenumber, pagelength, 1, ostream);
1118 finish_index (FILE *ostream)
1121 fputs ("}\n", ostream);
1131 writelines (char **linearray, int nlines, FILE *ostream)
1155 indexify (*next_line, ostream);
1159 finish_index (ostream);