mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-15 21:51:05 +00:00
[PR #874] feat: Moving queue file to it's directory and creating include file for it #1389
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/TheAlgorithms/C/pull/874
State: closed
Merged: Yes
Description of Change
The file "queue.c" was not in the correct dir, since it didn't existed, so I created queue directory and moved the file into it. I also created a "include.h" file where I put the functions declarations, struct definitions and header files for better organization. Also deleted isEmpty declaration which wasn't being used (the function wasn't even coded).
References
Checklist
Notes:
Created a includeh file for the queue code, created queue file and moved both files to it.