Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ximaz/list-in-c
This project aims to re-build the most powerfull list type in C at ground-0 level, with the most optimized memory management and the most accessible features.
https://github.com/ximaz/list-in-c
c data-structures epitech epitech-project epitech-study epitech-workshop linked-data linked-list linkedlist list lists
Last synced: about 1 month ago
JSON representation
This project aims to re-build the most powerfull list type in C at ground-0 level, with the most optimized memory management and the most accessible features.
- Host: GitHub
- URL: https://github.com/ximaz/list-in-c
- Owner: Ximaz
- Created: 2024-02-20T03:09:45.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-05-05T14:43:21.000Z (9 months ago)
- Last Synced: 2024-05-05T15:36:59.291Z (9 months ago)
- Topics: c, data-structures, epitech, epitech-project, epitech-study, epitech-workshop, linked-data, linked-list, linkedlist, list, lists
- Language: C
- Homepage:
- Size: 90.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# List in C
This project aims to re-build the most powerfull list type in C at ground-0
level, with the most optimized memory management and the most accessible
features.# Features
Let's talk about the features I want to implement. Each feature can be found
at `include/list.h`. If you scroll down a little bit, you'll see all functions
I'm planning on implementing.Note that, each feature followed by :
- `_itself` : will affect the current list,
- `_into` : won't affect the current list, and will set the result in `output`,
- ``: won't affect the current list and will allocate a new list.