_stdio.h
上传用户:super_houu
上传日期:2008-09-21
资源大小:4099k
文件大小:1k
源码类别:

DVD

开发平台:

Others

  1. /*
  2.  *      Paradigm C/C++ Run-Time Library - Version 5.0
  3.  *
  4.  *      Copyright (c) 1998 Paradigm Systems.  All rights reserved.
  5.  *      Portions Copyright (c) 1996 Borland International.
  6.  *
  7.  *      $Revision: 2 $
  8.  *
  9.  *      Definitions for stream input/output.
  10.  */
  11. #include "Config.h" // Global Configuration - do not remove!
  12. #ifndef _SIZE_T
  13. #define _SIZE_T
  14. typedef unsigned size_t;
  15. #endif
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. size_t  pascal near __fputn  (const void *__ptr, size_t __n, FILE *__fp);
  20. char  * pascal near __mkname (char *__s, char *__pfx, unsigned __num);
  21. char  * pascal near __tmpnam (char *__s, unsigned *__numP);
  22. FILE  * pascal near __openfp (FILE *__fp, const char *__fname,
  23.                 const char *__type, int __shflag);
  24. FILE  * pascal near __getfp  (void);
  25. int near _Cdecl _Ngetche    (void);
  26. int near _Cdecl _Nungetch   (int __ch);
  27. int near _Cdecl _Nfgetc     (FILE *__stream);
  28. int near _Cdecl _Nungetc    (int __c, FILE *__stream);
  29. int  _flushout           (void);
  30. #ifdef __cplusplus
  31. }
  32. #endif