1 2 3 4 5 6 7 8
#ifndef __SHEETS_H_ #define __SHEETS_H_ #include "expr.h" typedef struct sheet { int width, height; expr ***cells; } sheet; #endif