2 * Copyright (C) 2008 Diego Hernan Borghetti.
17 void e_debug_init(void)
20 _dbg_fp
= fopen("eco.debug", "w");
22 setvbuf(_dbg_fp
, NULL
, _IONBF
, 0);
26 void e_debug_end(void)
36 void e_debug_printf(char *fmt
, ...)
45 vfprintf(_dbg_fp
, fmt
, ap
);