clang-format src/*

This commit is contained in:
2023-08-18 17:18:23 +02:00
parent 2712a1bf3e
commit 17a439b415
18 changed files with 149 additions and 244 deletions

View File

@@ -1,20 +1,20 @@
#ifndef SHEET_H
#define SHEET_H
#include <stddef.h>
#include <string.h>
#include <stdlib.h>
#include <err.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;
char *title;
};
void sheet_init(struct sheet *s, 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