summaryrefslogtreecommitdiff
path: root/volk/include/volk/emit_omnilog.py
blob: 309d7e57895e0a350cf2210318cd299d6af8ae52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
def emit_prolog():
    tempstring = "";
    tempstring = tempstring + '#ifdef __cplusplus\n';
    tempstring = tempstring + 'extern "C" {\n';
    tempstring = tempstring + '#endif\n';
    return tempstring;
def emit_epilog():
    tempstring = "";
    tempstring = tempstring + '#ifdef __cplusplus\n';
    tempstring = tempstring + '}\n';
    tempstring = tempstring + '#endif\n';
    return tempstring;