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

#include <stdio.h>

long   file_size(FILE * const file);
FILE * file_open(const char * const path, const char * const mode);

#endif	/* FILE_H */