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;
45 output = vasnprintf (buf, &lenbuf, format, args);
49 if (!output)
55 if (fwrite (output, 1, len, fp) < len)
57 if (output != buf)
60 free (output);
66 if (output != buf)
67 free (output);