Files
android_development/vndk/tools/header-checker/tests/integration/array/include/diff.h
Hsin-Yi Chen 64930c428f Diff array types
This commit implements the function that compares array size, alignment,
and element type.

Test: ./test.py ; update prebuilts/clang-tools and build
Bug: 255702405

Change-Id: I4f25d22f060cfda04bbd88b9c2521461b95e6829
2023-02-02 12:58:35 +08:00

14 lines
262 B
C

struct Struct {
int array[];
};
extern "C" {
void StructMember(Struct &);
void Pointer(int *);
void DoublePointer(int *[]);
void PointerToArray(int (*)[10]);
void PointerTo2DArray(int (*)[10][10]);
void Reference(int (&)[][11]);
void Element(short (*)[2]);
}