_stdio.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:1k
- /*
- * Paradigm C/C++ Run-Time Library - Version 5.0
- *
- * Copyright (c) 1998 Paradigm Systems. All rights reserved.
- * Portions Copyright (c) 1996 Borland International.
- *
- * $Revision: 2 $
- *
- * Definitions for stream input/output.
- */
- #include "Config.h" // Global Configuration - do not remove!
- #ifndef _SIZE_T
- #define _SIZE_T
- typedef unsigned size_t;
- #endif
- #ifdef __cplusplus
- extern "C" {
- #endif
- size_t pascal near __fputn (const void *__ptr, size_t __n, FILE *__fp);
- char * pascal near __mkname (char *__s, char *__pfx, unsigned __num);
- char * pascal near __tmpnam (char *__s, unsigned *__numP);
- FILE * pascal near __openfp (FILE *__fp, const char *__fname,
- const char *__type, int __shflag);
- FILE * pascal near __getfp (void);
- int near _Cdecl _Ngetche (void);
- int near _Cdecl _Nungetch (int __ch);
- int near _Cdecl _Nfgetc (FILE *__stream);
- int near _Cdecl _Nungetc (int __c, FILE *__stream);
- int _flushout (void);
- #ifdef __cplusplus
- }
- #endif