home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 15 / 15.iso / s / s220 / 2.ddi / STDIO.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-02-10  |  386 b   |  19 lines

  1. /*            STDIO.H
  2.  
  3. */
  4.  
  5. #define    NULL    (void *) 0
  6. #define    EOF    (-1)
  7.  
  8. int    putchar(int);
  9. int    getchar(void);
  10. int    sprintf(char *,const char *,...);
  11. int    printf(const char *,...);
  12.  
  13. #ifdef  _STDARG_INCLUDED  /* Note: #include "stdarg.h" BEFORE "stdio.h" */
  14. int    _formatted_write (const char *format,
  15.               void outputf(char, void *),
  16.               void *secret_pointer,
  17.               va_list ap);
  18. #endif
  19.