Home | History | Annotate | Download | only in lib

Lines Matching refs:output

1 /* Formatted output to a stream.
32 /* Print formatted output to the stream FP.
39 char *output;
43 output = vasnprintf (buf, &lenbuf, format, args);
46 if (!output)
52 if (fwrite (output, 1, len, fp) < len)
54 if (output != buf)
57 free (output);
63 if (output != buf)
64 free (output);