Find a file
Thomas Haller 130ac3e3a9 Squashed 'src/c-list/' changes from b86ba656ac22..fa024740fc6f
fa024740fc6f build: prepare v3.1.0 release

git-subtree-dir: src/c-list
git-subtree-split: fa024740fc6f0e244afb3eed888f95bffdf36323
2022-07-06 09:45:34 +02:00
.github/workflows Squashed 'src/c-list/' changes from a0970f12f1f4..b86ba656ac22 2022-05-06 10:02:08 +02:00
src Squashed 'src/c-list/' changes from a0970f12f1f4..b86ba656ac22 2022-05-06 10:02:08 +02:00
.editorconfig Squashed 'src/c-list/' content from commit 96455db9f04a 2021-10-01 16:15:48 +02:00
AUTHORS Squashed 'src/c-list/' changes from a0970f12f1f4..b86ba656ac22 2022-05-06 10:02:08 +02:00
meson.build Squashed 'src/c-list/' changes from b86ba656ac22..fa024740fc6f 2022-07-06 09:45:34 +02:00
NEWS.md Squashed 'src/c-list/' changes from b86ba656ac22..fa024740fc6f 2022-07-06 09:45:34 +02:00
README.md Squashed 'src/c-list/' changes from a0970f12f1f4..b86ba656ac22 2022-05-06 10:02:08 +02:00

c-list

Circular Intrusive Double Linked List Collection

The c-list project implements an intrusive collection based on circular double linked lists in ISO-C11. It aims for minimal API constraints, leaving maximum control over the data-structures to the API consumer.

Project

Requirements

The requirements for this project are:

  • libc (e.g., glibc >= 2.16)

At build-time, the following software is required:

  • meson >= 0.60
  • pkg-config >= 0.29

Build

The meson build-system is used for this project. Contact upstream documentation for detailed help. In most situations the following commands are sufficient to build and install from source:

mkdir build
cd build
meson setup ..
ninja
meson test
ninja install

No custom configuration options are available.

Repository:

License:

  • Apache-2.0 OR LGPL-2.1-or-later
  • See AUTHORS file for details.