MCPcopy Create free account
hub / github.com/boostorg/build / out_

Function out_

src/engine/output.cpp:17–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

15#define bjam_err (stderr)
16
17static void out_( char const * data, FILE * const io )
18{
19 while ( *data )
20 {
21 size_t const len = strcspn( data, "\r" );
22 data += fwrite( data, 1, len, io );
23 if ( *data == '\r' ) ++data;
24 }
25}
26
27
28void out_flush()

Callers 2

out_dataFunction · 0.85
err_dataFunction · 0.85

Calls 1

strcspnFunction · 0.85

Tested by

no test coverage detected