12 lines
186 B
C
12 lines
186 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#define PARSER_STATE_LEN 256
|
|
|
|
struct peer;
|
|
|
|
void receive_cleanup(void);
|
|
void receive_new(int, void *, struct peer *);
|
|
void receive_print_usage(void);
|