back to scratko.xyz
aboutsummaryrefslogtreecommitdiff
path: root/card_queue.h
diff options
context:
space:
mode:
authorscratko <m@scratko.xyz>2024-08-03 03:39:46 +0300
committerscratko <m@scratko.xyz>2024-08-03 03:39:46 +0300
commit9e9919b897b00ff23aee6581471b4d7b4567bf4a (patch)
treee76a6801606510dc357de803c76a16756727dca3 /card_queue.h
parent0733ff24c89c8208b7e5d2789d0913d435b9e0fa (diff)
downloaddurak-9e9919b897b00ff23aee6581471b4d7b4567bf4a.tar.gz
durak-9e9919b897b00ff23aee6581471b4d7b4567bf4a.tar.bz2
durak-9e9919b897b00ff23aee6581471b4d7b4567bf4a.zip
Compilation succeeds
Diffstat (limited to 'card_queue.h')
-rw-r--r--card_queue.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/card_queue.h b/card_queue.h
index 475a93e..778ece4 100644
--- a/card_queue.h
+++ b/card_queue.h
@@ -16,5 +16,7 @@ void push_queue(struct card_queue *cq, const char *str);
struct card_queue_item* get_next_card_from_queue(struct card_queue *cq,
struct card_queue_item *prev);
int find_out_card_quantity_in_cq(const struct card_queue *cq);
+int is_empty_queue(struct card_queue *cq);
+const char* pop_card_queue(struct card_queue *cq);
#endif