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

Function debug_list_write

src/engine/debugger.cpp:149–157  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

147}
148
149static void debug_list_write( FILE * out, LIST * l )
150{
151 LISTITER iter = list_begin( l ), end = list_end( l );
152 fprintf( out, "%d\n", list_length( l ) );
153 for ( ; iter != end; iter = list_next( iter ) )
154 {
155 debug_object_write( out, list_item( iter ) );
156 }
157}
158
159static LIST * debug_list_read( FILE * in )
160{

Callers 3

debug_lol_writeFunction · 0.85
debug_child_printFunction · 0.85
debug_child_infoFunction · 0.85

Calls 4

list_beginFunction · 0.85
list_endFunction · 0.85
list_lengthFunction · 0.85
debug_object_writeFunction · 0.85

Tested by

no test coverage detected