• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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