24 lines
282 B
C
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
|