mirror of
https://github.com/openharmony/third_party_rust_bindgen.git
synced 2026-07-22 15:35:27 -04:00
10 lines
205 B
C
10 lines
205 B
C
// 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); |