aboutsummaryrefslogtreecommitdiff
path: root/weechat/debug.h
blob: d552010f34bb9d858aecc9a040087804c2f3e77f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once


#define debug_init tomsg__debug_init
#define debug_deinit tomsg__debug_deinit
#define debugf tomsg__debugf


void debug_init(void);
void debug_deinit(void);

__attribute__((format (printf, 1, 2)))
void debugf(const char *restrict format, ...);