mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-07 05:15:05 +00:00
8 lines
122 B
C
8 lines
122 B
C
|
#ifndef _FILEUTILS_H
|
||
|
#define _FILEUTILS_H
|
||
|
#include <stdio.h>
|
||
|
|
||
|
FILE* ps_fopen(const char* path, const char* mode);
|
||
|
|
||
|
#endif
|