FileIO Schema started

This commit is contained in:
felsabbagh3
2019-11-12 00:31:30 -05:00
parent 7ed88ce4c1
commit ef83285c6c
23 changed files with 81258 additions and 26 deletions

22
runtime/fileIo/fileio.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef FILE_IOO
#define FILE_IOO
#include <sys/stat.h>
#include <errno.h>
#include <stdio.h>
void vx_close();
void vx_fstat();
void vx_isatty();
void vx_read();
void vx_write();
#endif