blob: 4e4f694bf521a4d6ac1a69e4a79c76d0d6dfc8d9 (
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
|