Blame src/message.h

Packit Service 50c9f2
/******************************************************************************
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * 
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Copyright (C) 1997-2015 by Dimitri van Heesch.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Permission to use, copy, modify, and distribute this software and its
Packit Service 50c9f2
 * documentation under the terms of the GNU General Public License is hereby 
Packit Service 50c9f2
 * granted. No representations are made about the suitability of this software 
Packit Service 50c9f2
 * for any purpose. It is provided "as is" without express or implied warranty.
Packit Service 50c9f2
 * See the GNU General Public License for more details.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 * Documents produced by Doxygen are derivative works derived from the
Packit Service 50c9f2
 * input used in their production; they are not affected by this license.
Packit Service 50c9f2
 *
Packit Service 50c9f2
 */
Packit Service 50c9f2
Packit Service 50c9f2
#ifndef MESSAGE_H
Packit Service 50c9f2
#define MESSAGE_H
Packit Service 50c9f2
Packit Service 50c9f2
#include <stdio.h>
Packit Service 50c9f2
#include <stdarg.h>
Packit Service 50c9f2
Packit Service 50c9f2
extern void msg(const char *fmt, ...);
Packit Service 50c9f2
extern void warn(const char *file,int line,const char *fmt, ...);
Packit Service 50c9f2
extern void va_warn(const char *file,int line,const char *fmt, va_list args);
Packit Service 50c9f2
extern void warn_simple(const char *file,int line,const char *text);
Packit Service 50c9f2
extern void warn_undoc(const char *file,int line,const char *fmt, ...);
Packit Service 50c9f2
extern void warn_doc_error(const char *file,int line,const char *fmt, ...);
Packit Service 50c9f2
extern void warn_uncond(const char *fmt, ...);
Packit Service 50c9f2
extern void err(const char *fmt, ...);
Packit Service 50c9f2
extern void err_full(const char *file,int line,const char *fmt, ...);
Packit Service 50c9f2
void initWarningFormat();
Packit Service 50c9f2
Packit Service 50c9f2
extern void printlex(int dbg, bool enter, const char *lexName, const char *fileName);
Packit Service 50c9f2
#endif