blob: 0bb59399ea90e3601b9c276406098631be62fb22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef FILE_H
#define FILE_H
#include <stdio.h>
FILE* get_file_s(const char* path, const char* type);
FILE* get_file(const char* path, const char* type);
int get_tty(void);
FILE* get_tty_stream(char* type);
#endif
|