clang-format src/*
This commit is contained in:
12
src/sheet.h
12
src/sheet.h
@@ -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
|
||||
Reference in New Issue
Block a user