Files
terminal-spreadsheet/src/sheet.h
2023-08-18 17:20:36 +02:00

20 lines
386 B
C

#ifndef SHEET_H
#define SHEET_H
#include "config.h"
#include <err.h>
#include <stddef.h>
#include <stdlib.h>
#include <string.h>
struct sheet {
struct celltree *root_cell;
size_t width;
size_t height;
char *title;
};
void sheet_init(struct sheet *s, size_t width, size_t height, char *title);
void sheet_delete(struct sheet *s);
#endif