summaryrefslogtreecommitdiff
path: root/lib.h
blob: bebc1dfc75a524529aa9cdc8a4e94e1bd963132d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef LIB_H
#define LIB_H

#include <stdbool.h>
#include <stdlib.h>

typedef struct State
{
  // Sandpiles
  unsigned char *data;
  size_t dwidth;

  size_t window_len;
  int multiplier;

  bool thread_alive;
} state_t;

bool load_from_file(state_t *state, const char *filepath);
bool write_to_file(state_t *state, const char *filepath);

#endif