💾 Archived View for gmi.noulin.net › gitRepositories › linkedList › file › README.md.gmi captured on 2023-01-29 at 10:52:01. Gemini links have been rewritten to link to archived content
-=-=-=-=-=-=-
README.md (569B)
1 # Sheepy 2 This is a sheepy package for [sheepy](https://spartatek.se/r/sheepy/file/README.md.html) and using [libsheepy](https://spartatek.se/r/libsheepy/file/README.md.html) 3 4 # Linked list 5 type-safe double linked lists 6 7 The nodes in the list are stored in segments for efficiency. 8 9 The data can be stored in the list directly nodes to reduce the frequency of memory allocations. 10 11 # Usage 12 13 Install with spm: `spm install linkedList` 14 15 Include header file: 16 - `#include "shpPackages/linkedList/linkedList.h"` 17 18 Usage examples are on the top of the headers and in `main.c`. 19