home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------------
- * filename - _stdio.h
- *
- * Definitions for stream input/output.
- *
- *-----------------------------------------------------------------------*/
-
- /*[]------------------------------------------------------------[]*/
- /*| |*/
- /*| Turbo C Run Time Library - Version 3.0 |*/
- /*| |*/
- /*| |*/
- /*| Copyright (c) 1987, 1990 by Borland International |*/
- /*| All Rights Reserved. |*/
- /*| |*/
- /*[]------------------------------------------------------------[]*/
-
- #ifndef _SIZE_T
- #define _SIZE_T
- typedef unsigned size_t;
- #endif
-
- extern unsigned _tmpnum;
-
- #ifdef __cplusplus
- extern "C" {
- #endif
- size_t pascal near __fputn (const void *__ptr, size_t __n, FILE *__fp);
- char * pascal near __mkname (char *__s, unsigned __num);
-
- 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);
-
- #ifdef __cplusplus
- }
- #endif
-