summaryrefslogtreecommitdiff
path: root/src/include/cache.h
blob: 701691ffa13b32adf179a584b796c905fa3e1b45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef CACHE_H
#define CACHE_H

#include <stdbool.h>

void save_to_cache(int g_count, int g_hover, int *e_hover, int *e_offset, int true_hover, char *cfg_name);

void load_cache(int g_count, int *g_hover, int **e_hover, int **e_offset, int *true_hover, char *new_cfg_name);

char *get_cache_path(bool create);

#endif