Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #ifndef _STDIO_H
  2. #define _STDIO_H
  3.  
  4. int putchar(int ch);
  5. void puts(const char *str);
  6. char* gets(char* str);
  7. void putuint(int i);
  8. void putint(int i);
  9. void puthex(uint32_t i);
  10. void print(char *format, va_list args);
  11. void printf(char *text, ... );
  12.  
  13.  
  14. #endif