| 2052 | */ |
| 2053 | |
| 2054 | static void |
| 2055 | doc_write(pstops_doc_t *doc, /* I - Document information */ |
| 2056 | const char *s, /* I - Data to send */ |
| 2057 | size_t len) /* I - Number of bytes to send */ |
| 2058 | { |
| 2059 | if (!doc->slow_order) |
| 2060 | fwrite(s, 1, len, stdout); |
| 2061 | |
| 2062 | if (doc->temp) |
| 2063 | cupsFileWrite(doc->temp, s, len); |
| 2064 | } |
| 2065 | |
| 2066 | |
| 2067 | /* |
no test coverage detected