summaryrefslogtreecommitdiff
path: root/bindgen-tests/tests/headers/func_with_func_ptr_arg.h
diff options
context:
space:
mode:
Diffstat (limited to 'bindgen-tests/tests/headers/func_with_func_ptr_arg.h')
-rw-r--r--bindgen-tests/tests/headers/func_with_func_ptr_arg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/bindgen-tests/tests/headers/func_with_func_ptr_arg.h b/bindgen-tests/tests/headers/func_with_func_ptr_arg.h
new file mode 100644
index 00000000..e9abcae6
--- /dev/null
+++ b/bindgen-tests/tests/headers/func_with_func_ptr_arg.h
@@ -0,0 +1,3 @@
+void foo(void (*bar)());
+
+void bar(void (*one)(int a, int b), void (*two)(int c, int d));