{% if include_statement %}
You must add the following #include statement in the fuzz target, its header file defines the function-under-test.
<code>
{{ include_statement }}
</code>
{% endif %}
{% if must_insert %}

You must insert code in the below code block before the function being tested:
<code>
{{ must_insert }}
</code>
{% endif %}
{% if typedef %}
Here is the source code reference of necessary type definitions that are needed for creating the parameters for the function:
<code>
{{ typedef }}
</code>
{% endif %}
{% if func_source %}

Here is the source code of the function being tested:
<code>
{{ func_source }}
</code>
{% endif %}
{% if xrefs %}

Here is the source code for functions which reference the function being tested:
<code>
{{ xrefs }}
</code>
{% endif %}
{% if tests_xrefs %}

Here is the source code snippet for the tests/examples that reference the function being tested:
{{ tests_xrefs }}
{% endif %}
