• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // bindgen-flags: --use-array-pointers-in-arguments
2 
3 int test_fn(float a, int arr[20]);
4 
5 int test_fn2(const float arr[20], int b);
6 
7 typedef char defArr[20];
8 typedef void foo(defArr a);
9 
10 void bar(defArr a);