aboutsummaryrefslogtreecommitdiff
path: root/include/file.h
blob: 8612857787d26515f0b2b929369a56ed75993381 (plain)
1
2
3
4
5
6
7
8
#ifndef FILE_H
#define FILE_H

#include <stdbool.h>
#include <stdio.h>

struct filedata readfile(FILE *fp, bool isstdin);
#endif