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

Function list_print

v2/engine/lists.c:316–326  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

314 */
315
316void list_print( LIST * l )
317{
318 LISTITER iter = list_begin( l ), end = list_end( l );
319 if ( iter != end )
320 {
321 printf( "%s", object_str( list_item( iter ) ) );
322 iter = list_next( iter );
323 for ( ; iter != end; iter = list_next( iter ) )
324 printf( " %s", object_str( list_item( iter ) ) );
325 }
326}
327
328
329/*

Callers 9

hcacheFunction · 0.85
lol_printFunction · 0.85
make1c_closureFunction · 0.85
var_dumpFunction · 0.85
exec_cmdFunction · 0.85
builtin_echoFunction · 0.85
builtin_exitFunction · 0.85
builtin_importFunction · 0.85
exec_cmdFunction · 0.85

Calls 3

list_beginFunction · 0.85
list_endFunction · 0.85
object_strFunction · 0.85

Tested by

no test coverage detected