home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c065 / 1.ddi / INCLUDE.ZIP / _STDIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-07  |  1.3 KB  |  39 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - _stdio.h
  3.  *
  4.  *    Definitions for stream input/output.
  5.  *
  6.  *-----------------------------------------------------------------------*/
  7.  
  8. /*[]------------------------------------------------------------[]*/
  9. /*|                                                              |*/
  10. /*|     Turbo C Run Time Library - Version 3.0                   |*/
  11. /*|                                                              |*/
  12. /*|                                                              |*/
  13. /*|     Copyright (c) 1987, 1990 by Borland International        |*/
  14. /*|     All Rights Reserved.                                     |*/
  15. /*|                                                              |*/
  16. /*[]------------------------------------------------------------[]*/
  17.  
  18. #ifndef _SIZE_T
  19. #define _SIZE_T
  20. typedef unsigned size_t;
  21. #endif
  22.  
  23. extern unsigned _tmpnum;
  24.  
  25. #ifdef __cplusplus
  26. extern "C" {
  27. #endif
  28. size_t  pascal near __fputn  (const void *__ptr, size_t __n, FILE *__fp);
  29. char  * pascal near __mkname (char *__s, unsigned __num);
  30.  
  31. int near _Cdecl _Ngetche    (void);
  32. int near _Cdecl _Nungetch    (int __ch);
  33. int near _Cdecl _Nfgetc         (FILE *__stream);
  34. int near _Cdecl _Nungetc     (int __c, FILE *__stream);
  35.  
  36. #ifdef __cplusplus
  37. }
  38. #endif
  39.