|
Last change
on this file since 1088 was 1074, checked in by Bruno Cornec, 19 years ago |
|
This version of trunk desn't seg fault on mr_msg anymore.
Still not ready for 3.0.0 but improvements ongoing
|
-
Property svn:eol-style
set to
native
|
|
File size:
444 bytes
|
| Line | |
|---|
| 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 |
|
|---|
| 11 | #ifndef _GNU_SOURCE
|
|---|
| 12 | #define _GNU_SOURCE
|
|---|
| 13 | #endif
|
|---|
| 14 | #include <stdarg.h>
|
|---|
| 15 |
|
|---|
| 16 | /* functions (public methods) */
|
|---|
| 17 |
|
|---|
| 18 | extern inline void mr_msg(int debug, const char *fmt, ...);
|
|---|
| 19 | extern void mr_msg_init(const char *configfile, int loglevel);
|
|---|
| 20 | extern void mr_msg_close(void);
|
|---|
| 21 |
|
|---|
| 22 | #endif /* MR_MSG_H */
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.