MCPcopy Create free account
hub / github.com/apache/nuttx / print_dependencies

Function print_dependencies

tools/kconfig2html.c:1547–1562  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1545 ****************************************************************************/
1546
1547static void print_dependencies(output_t outfunc)
1548{
1549 int i;
1550
1551 if (g_ndependencies > 0)
1552 {
1553 outfunc(" <li><i>Dependencies</i>: %s", g_dependencies[0]);
1554
1555 for (i = 1; i < g_ndependencies; i++)
1556 {
1557 outfunc(", %s\n", g_dependencies[i]);
1558 }
1559
1560 outfunc("</li>\n");
1561 }
1562}
1563
1564/****************************************************************************
1565 * Name: free_dependencies

Callers 3

process_configFunction · 0.85
process_choiceFunction · 0.85
process_menuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected