lazysphere/lib/file.h
2023-05-06 00:39:44 -04:00

14 lines
221 B
C

#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