dazibao/src/debug.h
2020-05-04 20:46:12 +02:00

24 lines
282 B
C

#ifndef DEBUG_H
#define DEBUG_H
#include "node.h"
#define DEBUG_LEVEL 7
void welcome();
void print_info(char * msg);
void print_debug(char * msg);
void print_error(char * msg);
void print_peers(list * l);
void print_data(list * l);
void print_data_info(list * l);
#endif