Lines Matching refs:FILE
289 /* Print contents of bitset BSET to FILE. */
291 bitset_print (FILE *file, bitset bset, bool verbose)
298 fprintf (file, "n_bits = %lu, set = {",
306 fprintf (file, "\n");
310 fprintf (file, "%lu ", (unsigned long int) i);
315 fprintf (file, "}\n");
319 /* Dump bitset BSET to FILE. */
321 bitset_dump (FILE *file, bitset bset)
323 bitset_print (file, bset, false);