/* asarray.h */ #include #include #include struct starray { int s_val; int* s_arr; float* f_arr; }; void init_starray(int aSize,struct starray **stA); void alter_starray(int aSize,struct starray **stA); void print_starray(char* text,int aSize,const struct starray *stA,FILE* ofile); /* EOF */