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

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

typedef struct State
{
  // Sandpiles
  uint64_t *data;
  size_t dwidth;

  size_t window_len;
  double multiplier;

  bool thread_alive;
  uint64_t payload;
} state_t;

bool write_to_png(state_t *state, const char *filepath);

#endif