| struct_arg.h --------------------- 
 struct sClkTime
 {
 int a;
 int b;
 };
 
 void ClkTimeRead(struct sClkTime *d);
 
 struct_arg.c ---------------------
 
 #include "struct_arg.h"
 
 void ClkTimeRead(struct sClkTime *d)
 {
 d->a = 0;
 d->b = 0;
 }
 
 compiling struct_arg.c...
 "struct_arg.c" - 0 Error(s), 0 Warning(s).
 |