blob: dfba8f8aff1c96aa1a05fa90a44dc22a9d1e8092 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SOCKET_COMMON_H
#define SOCKET_COMMON_H
#include <stdio.h>
#include <gio/gio.h>
#include <string.h>
#define DEBUG_ON - uncomment this to have debug messages
#ifdef DEBUG_ON
#define g_print_debug(...) g_print(__VA_ARGS__)
#else
#define g_print_debug(...) {}
#endif
#endif
|