From a2d696dea797faaa3157046c8ae89cd70e965bff Mon Sep 17 00:00:00 2001 From: scratko Date: Sat, 10 Aug 2024 02:46:56 +0300 Subject: Prefinal version Added client. Moved files to directories. --- client/data_decryption.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 client/data_decryption.h (limited to 'client/data_decryption.h') diff --git a/client/data_decryption.h b/client/data_decryption.h new file mode 100644 index 0000000..b53e53f --- /dev/null +++ b/client/data_decryption.h @@ -0,0 +1,14 @@ +#ifndef DATA_DECRYPTION_H_SENTRY +#define DATA_DECRYPTION_H_SENTRY + +#include "client.h" + +void decrypt_set_state(struct client *cl, char **end_p); +int decrypt_get_number(char *start_p, char **end_p); +void decrypt_set_base_info(struct client *cl, char *start_p, char **end_p); +void decrypt_set_position_whose_turn(struct client *cl, char *start_p, + char **end_p); +void decrypt_set_card_queue(struct client *cl, char *start_p); +void decrypt_set_card_acceptance_status(struct client *cl, char *start_p); + +#endif -- cgit v1.2.3