1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#ifndef MELVIX_STDIO_H #define MELVIX_STDIO_H #include <stdarg.h> // File operations // Character input/output char getch(); void putch(char ch); void puts(char *data); void printf(char *fmt, ...); void vprintf(char *fmt, va_list args); #endif