#ifndef __SHEETS_H_ #define __SHEETS_H_ #include "expr.h" typedef struct sheet { int width, height; expr ***cells; } sheet; #endif