source: MondoRescue/branches/stable/mondo/src/include/mr_msg.h@ 1064

Last change on this file since 1064 was 1064, checked in by Bruno Cornec, 17 years ago

More controls at the compiler level
still working with the problems around variable arguments

  • Property svn:eol-style set to native
File size: 444 bytes
RevLine 
[1054]1/*
2 * $Id$
3 *
4 * Header file of mr_msg: a set of function manipulating messages
5 * Provided under the GPL v2
6 */
7
8#ifndef MR_MSG_H
9#define MR_MSG_H
10
[1061]11#ifndef _GNU_SOURCE
12#define _GNU_SOURCE
13#endif
14#include <stdarg.h>
15
[1054]16/* functions (public methods) */
17
[1064]18extern inline void mr_msg(int debug, const char *fmt, ...);
19extern void mr_msg_init(const char *configfile, int loglevel);
20extern void mr_msg_close(void);
[1054]21
22#endif /* MR_MSG_H */
Note: See TracBrowser for help on using the repository browser.