2012-06-14 09:06:06 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
// So we don't have to include fstream :P
|
|
|
|
#ifdef _WIN32
|
|
|
|
#ifndef _FILE_DEFINED
|
|
|
|
struct _iobuf {
|
|
|
|
char *_ptr;
|
|
|
|
int _cnt;
|
|
|
|
char *_base;
|
|
|
|
int _flag;
|
|
|
|
int _file;
|
|
|
|
int _charbuf;
|
|
|
|
int _bufsiz;
|
|
|
|
char *_tmpfname;
|
|
|
|
};
|
|
|
|
typedef struct _iobuf FILE;
|
|
|
|
#define _FILE_DEFINED
|
|
|
|
#endif
|
|
|
|
#else
|
|
|
|
#include <stdio.h>
|
2011-10-03 14:41:19 -04:00
|
|
|
#endif
|