This commit is contained in:
Your Name 2025-05-04 12:52:17 +03:00
parent ec265a4c23
commit ad0d7d25ff
5 changed files with 171 additions and 109 deletions

9
libmu/file_open.h Normal file
View file

@ -0,0 +1,9 @@
#ifndef _FILE_OPEN_H
#define _FILE_OPEN_H
#include <stdio.h>
#include <string.h>
#include <errno.h>
FILE *file_open(const char *prog, const char *path, const char *mode);
#endif