aboutsummaryrefslogtreecommitdiff
path: root/src/resources.h
blob: 8effb0ca2b7350fd236a219870b1b18fe8ce9494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef RESOURCES_H
#define RESOURCES_H

#include <stdio.h>

typedef struct {
    FILE *in_file;
    FILE *ref_file;
    FILE *out_file;

    char *in_buffer;
    char *ref_buffer;
    char *out_buffer;
} resources_t;

void resources_init(resources_t *const res);
void resources_free(resources_t *const res);

#endif /* RESOURCES_H */