NetworkManager/shared/c-list
Thomas Haller d209966c29 shared/c-list: re-import from latest c-util/c-list
$ git subtree pull --prefix shared/c-list/ git@github.com:c-util/c-list.git 071841c28d96e9104761af815a7ea367390c3174 --squash
2018-08-01 12:57:34 +02:00
..
.cherryci Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
src shared/c-list: re-import from latest c-util/c-list 2018-08-01 12:57:34 +02:00
.editorconfig Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
.travis.yml Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
AUTHORS shared/c-list: re-import from latest c-util/c-list 2018-08-01 12:57:34 +02:00
AUTHORS-ASL shared/c-list: re-import from latest c-util/c-list 2018-08-01 12:57:34 +02:00
AUTHORS-LGPL Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
LICENSE Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
meson.build Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
NEWS Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00
README Merge commit 'afe2594a7799d3113470c40664c6eda88b83c7e5' as 'shared/c-list' 2018-04-18 15:20:40 +02:00

c-list - Circular Intrusive Double Linked List Collection in ISO-C11

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 c-list. Contact upstream
        documentation for detailed help. In most situations the following
        commands are sufficient to build and install c-list from source:

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

        No custom configuration options are available.