summaryrefslogtreecommitdiff
path: root/socket-common.h
blob: 41d177e09c387f22f9b3e7f9ff26bdd36da68b93 (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