lex/ast-lex-yacc/inc/extio.h

19 lines
339 B
C
Raw Permalink Normal View History

#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