_CCodeGenerator.generate_c_src(): use Jinja 2 templates
[deliverable/barectf.git] / barectf / templates / c / func-proto-params.j2
1 {% for param in params %}
2 {% set c_type = param.ft | ft_c_type %},
3 {{ c_type }}{{ ' ' if not c_type.endswith('*') }}{{ prefix }}_{{ param.name }}
4 {%- endfor %}
This page took 0.034366 seconds and 4 git commands to generate.