/* 
 * $Id$
 *
 *     Header file of mr_msg: a set of function manipulating messages
 *     Provided under the GPL v2
 */

#ifndef MR_MSG_H
#define MR_MSG_H

/* functions (public methods) */

extern void _mr_msg(int debug, const char *file, const char *function, int line, const char *fmt, ...);

#define mr_msg(level, format, args...) _mr_msg(level, __FILE__, __FUNCTION__, __LINE__, format, ## args)

#endif							/* MR_MSG_H */
