Find a file
Thomas Haller cd9f57a164 Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7
dda36d30c7 build: update build system

git-subtree-dir: shared/c-list
git-subtree-split: dda36d30c7d655b4d61358519168fa7ce0e9dae9
2019-02-06 07:53:13 +01:00
.cherryci Squashed 'shared/c-list/' content from commit 317aa1c65 2018-04-18 15:20:33 +02:00
src Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00
.editorconfig Squashed 'shared/c-list/' content from commit 317aa1c65 2018-04-18 15:20:33 +02:00
.travis.yml Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00
AUTHORS Squashed 'shared/c-list/' changes from 317aa1c65..071841c28 2018-08-01 12:57:24 +02:00
AUTHORS-ASL Squashed 'shared/c-list/' changes from 317aa1c65..071841c28 2018-08-01 12:57:24 +02:00
AUTHORS-LGPL Squashed 'shared/c-list/' content from commit 317aa1c65 2018-04-18 15:20:33 +02:00
LICENSE Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00
meson.build Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00
NEWS Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00
README Squashed 'shared/c-list/' changes from 071841c28d..dda36d30c7 2019-02-06 07:53:13 +01:00

c-list - Circular Intrusive Double Linked List Collection

ABOUT:
        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.

DETAILS:
        https://c-util.github.io/c-list

BUG REPORTS:
        https://github.com/c-util/c-list/issues

GIT:
        git@github.com:c-util/c-list.git
        https://github.com/c-util/c-list.git

GITWEB:
        https://github.com/c-util/c-list

LICENSE:
        Apache Software License 2.0
        Lesser General Public License 2.1+
        See AUTHORS for details.

REQUIREMENTS:
        The requirements for c-list are:

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

        At build-time, the following software is required:

            meson >= 0.41
            pkg-config >= 0.29

INSTALL:
        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.