Just getting the betting cycle done.

This commit is contained in:
2021-08-13 10:09:37 -07:00
parent eddc5bfafd
commit 98b50f5987
8 changed files with 59 additions and 25 deletions

View File

@ -45,7 +45,9 @@ void queueDispose(queue_t *queue);
/**
* Restacks the queue. The restack process essentially rewinds the queue so that
* the current items move back to position 0, and allows you to add more items
* to the queue again.
* to the queue again. Because the memory does shift, and the indexes do change
* a lot of your pointers will break, make sure you re-reference all your
* pointers.
*
* @param queue Queue to restack.
*/