summaryrefslogtreecommitdiffstats
path: root/src/image.h
blob: 5a61d10b0fc7f9e554b4c34f7bf1a27cd4e1ee26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef IMAGE_H
#define IMAGE_H

struct image;

struct image *
image_new(const char *file_name);

void
image_render(struct image *image);

struct image *
image_destroy(struct image **image);

#endif  /* IMAGE_H */