xref: /aosp_15_r20/development/vndk/tools/header-checker/tests/integration/c_and_cpp/source2.c (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1 #include <c_include.h>
2 
CFunction(struct Cstruct ** cstruct)3 void CFunction(struct Cstruct **cstruct) {
4     if (cstruct) {
5       struct Cstruct *next = *cstruct++;
6       next--;
7     }
8 }
9