#ifndef ARRAY_H #define ARRAY_H struct _my_array { int size; double *data; }; typedef struct _my_array Array; #endif