back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/client/data_decryption.h
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-08-10 02:46:56 +0300
committerscratko <m@scratko.xyz>2024-08-10 02:46:56 +0300
commita2d696dea797faaa3157046c8ae89cd70e965bff (patch)
tree74051e828ec401f399b2316a535c200f3afa95c5 /client/data_decryption.h
parent9e9919b897b00ff23aee6581471b4d7b4567bf4a (diff)
downloaddurak-a2d696dea797faaa3157046c8ae89cd70e965bff.tar.gz
durak-a2d696dea797faaa3157046c8ae89cd70e965bff.tar.bz2
durak-a2d696dea797faaa3157046c8ae89cd70e965bff.zip
Prefinal version
Added client. Moved files to directories.
Diffstat (limited to 'client/data_decryption.h')
-rw-r--r--client/data_decryption.h14
1 files changed, 14 insertions, 0 deletions
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