voron

experimental ARM OS
git clone git://git.2f30.org/voron
Log | Files | Refs | README | LICENSE

print.h (205B)


      1 #ifndef __PRINT_H
      2 #define __PRINT_H
      3 
      4 #include <varg.h>
      5 
      6 int kputs(const char *s);
      7 int kputchar(int c);
      8 int kprintf(const char *fmt, ...);
      9 int kvprintf(const char *fmt, va_list ap);
     10 
     11 #endif	/* __PRINT_H */