Home | History | Annotate | Download | only in c_and_cpp
      1 #include<c_include.h>
      2 
      3 void CFunction(struct Cstruct **cstruct) {
      4     if (cstruct) {
      5       struct Cstruct *next = *cstruct++;
      6       next--;
      7     }
      8 }
      9