home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_122 / 2.ddi / RTLINSRC.ZIP / _STDIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  1.8 KB  |  53 lines

  1. /*------------------------------------------------------------------------
  2.  * filename - _stdio.h
  3.  *
  4.  *      Definitions for stream input/output.
  5.  *-----------------------------------------------------------------------*/
  6.  
  7. /*[]------------------------------------------------------------[]*/
  8. /*|                                                              |*/
  9. /*|     C/C++ Run Time Library - Version 4.0                     |*/
  10. /*|                                                              |*/
  11. /*|                                                              |*/
  12. /*|     Copyright (c) 1987, 1991 by Borland International        |*/
  13. /*|     All Rights Reserved.                                     |*/
  14. /*|                                                              |*/
  15. /*[]------------------------------------------------------------[]*/
  16.  
  17. #ifndef _SIZE_T
  18. #define _SIZE_T
  19. typedef unsigned size_t;
  20. #endif
  21.  
  22. #ifdef __cplusplus
  23. extern "C" {
  24. #endif
  25. size_t  pascal near __fputn  (const void *__ptr, size_t __n, FILE *__fp);
  26. char  * pascal near __mkname (char *__s, char *__pfx, unsigned __num);
  27. char  * pascal near __tmpnam (char *__s, unsigned *__numP);
  28. FILE  * pascal near __openfp (FILE *__fp, const char *__fname,
  29.                 const char *__type, int __shflag);
  30. FILE  * pascal near __getfp  (void);
  31.  
  32. int near _Cdecl _Ngetche    (void);
  33. int near _Cdecl _Nungetch   (int __ch);
  34. int near _Cdecl _Nfgetc     (FILE *__stream);
  35. int near _Cdecl _Nungetc    (int __c, FILE *__stream);
  36.  
  37. #ifdef __OS2__
  38.  
  39. void _lock_all_streams   (void);
  40. void _unlock_all_streams (void);
  41. void _lock_stream        (FILE *__stream);
  42. void _unlock_stream      (FILE *__stream);
  43.  
  44. int  _flushall           (void);
  45. int  _lgetc              (FILE  *__stream );
  46. int  _lputc              (int __ch, FILE *__stream );
  47.  
  48. #endif
  49.  
  50. #ifdef __cplusplus
  51. }
  52. #endif
  53.