(components: list[bytes])
| 1614 | |
| 1615 | |
| 1616 | def c_string_array_initializer(components: list[bytes]) -> str: |
| 1617 | result = [] |
| 1618 | result.append("{\n") |
| 1619 | for s in components: |
| 1620 | result.append(" " + c_string_initializer(s) + ",\n") |
| 1621 | result.append("}") |
| 1622 | return "".join(result) |
no test coverage detected
searching dependent graphs…