Add windows libs
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
// cstdio standard header
|
||||
#pragma once
|
||||
#ifndef _CSTDIO_
|
||||
#define _CSTDIO_
|
||||
#include <yvals.h>
|
||||
|
||||
#ifdef _STD_USING
|
||||
#undef _STD_USING
|
||||
#include <stdio.h>
|
||||
#define _STD_USING
|
||||
|
||||
#else /* _STD_USING */
|
||||
#include <stdio.h>
|
||||
|
||||
#if _GLOBAL_USING
|
||||
_STD_BEGIN
|
||||
using ::size_t; using ::fpos_t; using ::FILE;
|
||||
using ::clearerr; using ::fclose; using ::feof;
|
||||
using ::ferror; using ::fflush; using ::fgetc;
|
||||
using ::fgetpos; using ::fgets; using ::fopen;
|
||||
using ::fprintf; using ::fputc; using ::fputs;
|
||||
using ::fread; using ::freopen; using ::fscanf;
|
||||
using ::fseek; using ::fsetpos; using ::ftell;
|
||||
using ::fwrite; using ::getc; using ::getchar;
|
||||
using ::gets; using ::perror;
|
||||
using ::putc; using ::putchar;
|
||||
using ::printf; using ::puts; using ::remove;
|
||||
using ::rename; using ::rewind; using ::scanf;
|
||||
using ::setbuf; using ::setvbuf; using ::sprintf;
|
||||
using ::sscanf; using ::tmpfile; using ::tmpnam;
|
||||
using ::ungetc; using ::vfprintf; using ::vprintf;
|
||||
using ::vsprintf;
|
||||
_STD_END
|
||||
#endif /* _GLOBAL_USING */
|
||||
|
||||
#endif /* _STD_USING */
|
||||
#endif /* _CSTDIO_ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1992-2002 by P.J. Plauger. ALL RIGHTS RESERVED.
|
||||
* Consult your license regarding permissions and restrictions.
|
||||
V3.13:0009 */
|
Reference in New Issue
Block a user