Newer
Older
emul / emul_io_file.h
@TakayunDev TakayunDev on 6 May 2016 235 bytes initial commit
#ifndef EMUL_IO_FILE__
#define EMUL_IO_FILE__

#include <stdio.h>

void emul_out_file(char);

char emul_cin_file();

void emul_open_file(char*, char*);

/* this must be closed when closed application */
void emul_close_file();

#endif