#ifndef _EXTIO_H_ #define _EXTIO_H_ #include #include // define different ANSI format strings extern const char *DEBUG; extern const char *INFO; extern const char *WARN; extern const char *ERROR; /** * prints a notification string to standard out */ int notify(const char *type, const char *format, ...); #endif