Go to file
Thomas Haller 9d1772bd73 Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754
1407a1fb2754 ci: add clang to RTD scripts
8404c4ca6d06 ci: build documentation
044c65c2e134 docs: add sphinx-based API documentation
ad8449068d96 ci: use ci-c-util for macos runs
179987035687 build: adjust for v1.1.0 release
55d787178c84 build: prepare v1.1.0 release
29ca943e636a c-stdaux: avoid NULL arithmetic even in dead-code
c6358e956c29 c-stdaux: avoid NULL-dereference in constant expressions
7fab258bdf6a c-stdaux: improve kerneldoc comments
434b75a796c0 build: export 'version-scripts' configuration
33d56a6aecb9 c-stdaux: encapsulate C_EXPR_ASSERT()
aca7ee0ece60 ci: add macos run
0aa338b1f0de test: prefer pipe() over eventfd() for portability
adda5ff3e9d9 build: export cflags via pkg-config
7a8493bebc59 api: add c_memcpy()
a01615aefe48 build: prepare v1.0.0
1685fc39db3d api: provide c_memzero()
1257244f886a api: add c_memset()

git-subtree-dir: src/c-stdaux
git-subtree-split: 1407a1fb275494f9efc1abbef2fd19856fb1f43d
2022-07-06 10:15:51 +02:00
.github/workflows Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
src Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
.editorconfig Squashed 'src/c-stdaux/' content from commit 346623b40eb8 2021-10-01 15:51:56 +02:00
.readthedocs.yaml Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
AUTHORS Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
meson.build Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
meson_options.txt Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
NEWS.md Squashed 'src/c-stdaux/' changes from 99fe83cd5698..1407a1fb2754 2022-07-06 10:15:51 +02:00
README.md Squashed 'src/c-stdaux/' changes from 8652c488b8f1..9582a563c25e 2022-04-13 11:01:09 +02:00

c-stdaux

Auxiliary macros and functions for the C standard library

The c-stdaux project contains support-macros and auxiliary functions around the functionality of common C standard libraries. This includes helpers for the ISO-C Standard Library, but also other common specifications like POSIX or common extended features of wide-spread compilers like gcc and clang.

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.