aboutsummaryrefslogtreecommitdiff
path: root/README.md
blob: 0a57fba6bed583537aefa7e20f881a77a32d9300 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# cpp-utils

This repository provides common utilities that I use in older code bases (old
cpp std) and in experiments.

Each utility is provided in a self-contained header file, which makes it easy
to copy them over and adapt them to the concrete needs.

The folder `test/` does not really provide tests, but it is more used as
playground and to validate compilation :^)

The [Makefile](Makefile) offers some targets for building, running and linting
the utilities.
```sh
# Build "test" examples.
make

# Run all tests.
make run
```

## License
This project is licensed under the [MIT](LICENSE) license.