2023-04-11 00:14:18 +00:00
|
|
|
#ifndef FILE_H
|
|
|
|
#define FILE_H
|
2023-04-13 03:46:53 +00:00
|
|
|
|
2023-04-17 22:40:17 +00:00
|
|
|
#include <stdbool.h>
|
2023-04-13 03:46:53 +00:00
|
|
|
#include <stdio.h>
|
2023-04-11 00:14:18 +00:00
|
|
|
|
2023-04-17 22:40:17 +00:00
|
|
|
struct filedata readfile(FILE *fp, bool isstdin);
|
2023-04-11 00:14:18 +00:00
|
|
|
#endif
|