15 lines
167 B
C
15 lines
167 B
C
#ifndef SERVER_H
|
|
#define SERVER_H
|
|
|
|
#include "transactions.h"
|
|
|
|
typedef struct {
|
|
} client;
|
|
typedef struct {
|
|
} client_manager;
|
|
|
|
int start_server();
|
|
|
|
|
|
#endif // !SERVER_H
|