aboutsummaryrefslogtreecommitdiffstats
path: root/src/calendar.h
blob: ccf59bb397d05faca2123af7373f8f7e57162a6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef EVERY_CALENDAR_H
#define EVERY_CALENDAR_H

#include "entry.h"

#include <stdio.h>
#include <stdbool.h>

struct calendar_s {
	size_t count, width;
	struct entry_s *entries;
	bool err_flag;
};

struct calendar_s calendar_parse(FILE *f);

#endif