diff options
| author | Jan Sucan <sucanjan@fit.cvut.cz> | 2019-04-11 18:44:34 +0200 |
|---|---|---|
| committer | Jan Sucan <sucanjan@fit.cvut.cz> | 2019-04-11 18:44:34 +0200 |
| commit | 498c691eb0dd19b23f70421484aa6d738f35e73c (patch) | |
| tree | 10f244796344981ee6e5ddc5f3912372d7c5990b /file.h | |
Initial commit
Diffstat (limited to 'file.h')
| -rw-r--r-- | file.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,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 */ |
