19 lines
339 B
C
19 lines
339 B
C
#ifndef _EXTIO_H_
|
|
#define _EXTIO_H_
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h>
|
|
|
|
// 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
|