summaryrefslogtreecommitdiff
path: root/tests/headers/with_array_pointers_arguments.h
blob: 565b3cf6780182075de7391709509ff16e8c02ad (plain)
1
2
3
4
5
6
7
8
9
10
// bindgen-flags: --use-array-pointers-in-arguments

int test_fn(float a, int arr[20]);

int test_fn2(const float arr[20], int b);

typedef char defArr[20];
typedef void foo(defArr a);

void bar(defArr a);