C queue library
- 📍 Overview
- 👾 Features
- 📁 Project Structure
- 🚀 Getting Started
- 📌 Project Roadmap
- 🔗 Important links
- 🎗 License
CordorLib is very easy to use & very memory efficient || very fast queue library for Clang
It has everything you need in queue library
└── CordorLib/
├── LICENSE
├── README.md
├── lib //Files for you to use
│ ├── Cordor.c
│ └── Cordor.h
└── src //My programing thingies
└── Cordor.c
Becouse of the fact that this is classic header & c file you just have to Copy files From Git Repo and add flag when compiling:
- Clone the CordorLib repository:
❯ git clone https://github.com/Sqydev/CordorLib
- Navigate to the project directory:
❯ cd CordorLib
- Copy .h and .c file from the lib directory(or yust copy whole lib folder) to your project:
❯ cp -r ~/CordorLib/lib {your project patch}
- Include lib in your project with:
#Include "Cordor.h"
- When your done coding compile your code with:
❯ gcc -o YourProject.out YourProject.c YourProjectDir/lib/CordorLib.c
-
-o YourProject.out -- Name of output file
-
YourProject.c -- Name of YourProject file
-
YourProjectDir/lib/CordorLib.c -- Location of the library file
The entire usage of library is documented in Documentation:
-
Task 1
:Easynes to use & memory efficiency -
Task 2
:Make 2 types of queue, one supermemeffi and the other one fast but still memefi(normal). -
Task 3
: Improvements. -
Task 4
: First Official Release. -
Task 5
: More Improvements.
- Documentation
- something
- something
This project is under the Mit License.
Btw, template for this README was made by Readme-Ai, I recommend it wholeheartedly:).