blob: 690f36e6bea4f5bdbef673c270012de49f3c1950 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef VERIFICATION_CLIENT_INPUT_H_SENTRY
#define VERIFICATION_CLIENT_INPUT_H_SENTRY
#include "card_stack.h"
#include "client.h"
int vci_confirmation_waiting(int fd, char *buffer);
int vci_attack_or_tossing(int fd, char *buffer, player_cards deck,
enum client_states state);
int vci_defense(int fd, char *buffer, player_cards deck);
#endif
|