#include "emul_io_std.h" static int debug_level = 0; void emul_std_debug(int level) { debug_level = level; } //void emul_out_std(char c) { // putchar(c); //} //void emul_out_std(char *str) { // printf("%s", str); //} void emul_out_std(const char *format, ...) { if ( debug_level != 0 ) printf("[Output] "); va_list va; va_start(va, format); vprintf(format, va); va_end(va); } //void emul_out_std_err(char c) { // printf("[Except] %c", c); //} //void emul_out_std_err(char *str) { // printf("[Except] %s", str); //} void emul_out_std_err(const char *format, ...) { if ( debug_level <= 1 ) return ; va_list va; va_start(va, format); printf("[Except] "); vprintf(format, va); va_end(va); } //void emul_out_std_debug(char c) { // printf("[Debug] %c", c); //} //void emul_out_std_debug(char *str) { // printf("[Debug] %str", str); //} void emul_out_std_debug(const char *format, ...) { if ( debug_level <= 0 ) return ; va_list va; va_start(va, format); printf("[Debug] "); vprintf(format, va); va_end(va); } char emul_cin_std() { return getchar(); }