summaryrefslogtreecommitdiff
path: root/sheets.h
blob: 23b71558ced7d97d6c3f5ee520fe35f1aea4c137 (plain)
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