aboutsummaryrefslogtreecommitdiff
path: root/tools/interface_generator/templates/c_functions.mako
diff options
context:
space:
mode:
Diffstat (limited to 'tools/interface_generator/templates/c_functions.mako')
-rw-r--r--tools/interface_generator/templates/c_functions.mako4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/interface_generator/templates/c_functions.mako b/tools/interface_generator/templates/c_functions.mako
new file mode 100644
index 0000000..a7f88be
--- /dev/null
+++ b/tools/interface_generator/templates/c_functions.mako
@@ -0,0 +1,4 @@
+/* Functions */
+% for fn in functions:
+${fn['return']} ${fn['name']}(${ ", ".join(fn['arguments']) });
+% endfor