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

Function out_

v2/engine/output.c:16–24  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 1

out_actionFunction · 0.85

Calls 1

strcspnFunction · 0.85

Tested by

no test coverage detected