File: debug.h

package info (click to toggle)
contactsd 1.4.15-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,392 kB
  • sloc: cpp: 8,862; ansic: 3,793; sh: 361; xml: 75; python: 22; makefile: 13
file content (27 lines) | stat: -rw-r--r-- 588 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright © 2011 Collabora Ltd. <http://www.collabora.co.uk/>
 * Copyright © 2011 Nokia Corporation
 *
 * Copying and distribution of this file, with or without modification,
 * are permitted in any medium without royalty provided the copyright
 * notice and this notice are preserved.
 */

#ifndef __TEST_DEBUG_H__
#define __TEST_DEBUG_H__

#include <glib.h>

void _test_log (const gchar *format, ...);

#undef DEBUG
#define DEBUG(format, ...) \
  _test_log ("%s: " format, G_STRFUNC, ##__VA_ARGS__)

G_BEGIN_DECLS

void test_debug_enable (gboolean enable);

G_END_DECLS

#endif