unplugged-system/development/vndk/tools/header-checker/tests/integration/array/include/base.h

14 lines
255 B
C

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