chiark / gitweb /
extras/modem-modeswitch: move from udev-extras
[elogind.git] / extras / modem-modeswitch / utils.h
1 /*
2  * Modem mode switcher
3  *
4  * Copyright (C) 2009  Dan Williams <dcbw@redhat.com>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details:
15  */
16
17 #ifndef __UTILS_H__
18 #define __UTILS_H__
19
20 #define LOG_ERR  0
21 #define LOG_MSG  1
22 #define LOG_DBG  2
23
24 #define message(fmt, args...)   do_log (LOG_MSG, fmt, ##args);
25 #define error(fmt, args...)     do_log (LOG_ERR, fmt, ##args);
26 #define debug(fmt, args...)     do_log (LOG_DBG, fmt, ##args);
27
28 void do_log (int level, const char *fmt, ...);
29 int log_startup (const char *path, int do_debug, int be_quiet);
30 void log_shutdown (void);
31
32 #endif  /* __UTILS_H__ */