lazysphere/lib/file.h

15 lines
221 B
C
Raw Normal View History

2023-05-06 04:39:44 +00:00
#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