home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / sys / printf.h < prev    next >
Text File  |  1993-10-19  |  767b  |  37 lines

  1. /*    @(#)printf.h    1.0    2/2/90        (c) 1990 NeXT    */
  2.  
  3. /* 
  4.  * HISTORY
  5.  *  2-Feb-90  Gregg Kellogg (gk) at NeXT
  6.  *    Created.
  7.  *
  8.  */ 
  9.  
  10. #ifndef _SYS_PRINTF_
  11. #define _SYS_PRINTF_
  12.  
  13. #import <sys/types.h>
  14. #import <sys/buf.h>
  15. #import <sys/tty.h>
  16. #import <ansi/stdarg.h>
  17.  
  18. extern const char *panicstr;
  19.  
  20. int printf(const char *format, ...);
  21. int uprintf(const char *format, ...);
  22. int tprintf(struct tty *tp, const char *format, ...);
  23. int sprintf(char *s, const char *format, ...);
  24. int log(int level, const char *format, ...);
  25. int prf(const char *fmt, va_list ap, int flags, struct tty *ttyp);
  26. void panic_init(void);
  27. void panic(const char *s);
  28. void tablefull(const char *tab);
  29. void harderr(struct buf *bp, const char *cp);
  30. int (putchar)(int c);
  31. void logchar(int c);
  32. #endif _SYS_PRINTF_
  33.  
  34.  
  35.  
  36.  
  37.