summaryrefslogtreecommitdiff
path: root/src/util/file.h
blob: d9214566a3d28025cfbd41f2d35ec0ed132517bd (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef ANIMTOOL_FILE_H_
#define ANIMTOOL_FILE_H_

#include <stdio.h>
#include "util/str.h"

FILE *file_open(str s_path, const char *mode);
str file_read(FILE *file);

#endif